:root {
  --color-main: #2E9FEA; 
  --color-accent: #48ACAC;  
  --color-white: #ffffff; 

  --color-black: #111111;
  --color-dark-gray: #333333;
  --color-gray: #777777;
  --color-light-gray: #f5f5f5;

  --color-main-light: #6ec4ff;
  --color-main-dark: #1c6fa8;
  --color-accent-light: #73c5c5;
  --color-accent-dark: #2e7777;

  --background-main: var(--color-white);
  --background-alt: var(--color-light-gray);
  --background-gradient: linear-gradient(135deg, var(--color-main), var(--color-accent));

  --text-primary: var(--color-dark-gray);
  --text-secondary: var(--color-gray);
  --text-inverse: var(--color-white);

  --btn-bg: var(--color-main);
  --btn-bg-hover: var(--color-main-dark);
  --btn-accent-bg: var(--color-accent);
  --btn-accent-hover: var(--color-accent-dark);
  --btn-text: var(--color-white);

  --border-color: #ddd;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.2);

  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
}
body{
    font-family: 'Cairo', sans-serif;
}
/* Enhanced Modern Navbar Styles */
.smart-navbar {
    background: var(--background-gradient);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.smart-navbar.scrolled {
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.smart-navbar.scrolled .nav-link {
    color: var(--text-primary) !important;
    text-shadow: none;
}

.smart-navbar.scrolled .nav-link:hover {
    color: var(--color-main) !important;
    transform: translateY(-2px);
}

.smart-navbar.scrolled .navbar-brand img {
    filter: none;
    transform: scale(1.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    color: var(--color-white);
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.smart-navbar.scrolled .navbar-brand {
    color: var(--color-main);
}

.smart-navbar.scrolled .navbar-brand::after {
    background: var(--color-main);
}

.navbar-brand img {
    height: 45px;
    margin-left: 12px;
    filter: brightness(0) invert(1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-brand:hover img {
    transform: rotate(-5deg) scale(1.1);
}

.navbar-nav {
    margin-right: auto;
    gap: 0.2rem;
}

.nav-item {
    margin: 0 0.3rem;
    position: relative;
}

.nav-link {
    color: var(--color-white) !important;
    font-weight: 600;
    padding: 0.8rem 1.2rem !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-main));
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 3px 3px 0 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover::after {
    left: 100%;
}

.smart-navbar.scrolled .nav-link::before {
    background: linear-gradient(90deg, var(--color-accent), var(--color-main));
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.smart-navbar.scrolled .nav-link:hover {
    background-color: rgba(46, 159, 234, 0.08);
    box-shadow: 0 4px 15px rgba(46, 159, 234, 0.2);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.25);
    font-weight: 700;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.smart-navbar.scrolled .nav-link.active {
    background-color: rgba(46, 159, 234, 0.15);
    box-shadow: 0 4px 15px rgba(46, 159, 234, 0.25);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem 0.7rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
    width: 1.5em;
    height: 1.5em;
}

.navbar-toggler:hover .navbar-toggler-icon {
    transform: scale(1.1);
}

.smart-navbar.scrolled .navbar-toggler {
    background: rgba(46, 159, 234, 0.1);
}

.smart-navbar.scrolled .navbar-toggler:hover {
    background: rgba(46, 159, 234, 0.2);
}

.smart-navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2846, 159, 234, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown Enhancement */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
    margin-top: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.8rem 1.5rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-main-light), transparent);
    transition: right 0.4s ease;
    z-index: -1;
}

.dropdown-item:hover::before {
    right: 100%;
}

.dropdown-item:hover {
    background-color: rgba(46, 159, 234, 0.08);
    color: var(--color-main);
    transform: translateX(-5px);
    padding-right: 2rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: right;
        padding: 1.5rem 0;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 16px;
        margin-top: 1rem;
    }
    
    .smart-navbar.scrolled .navbar-nav {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .nav-item {
        margin: 0.3rem 0;
    }
    
    .nav-link {
        padding: 1rem 1.5rem !important;
        margin: 0.2rem 0.5rem;
        border-radius: 10px;
    }
    
    .nav-link::before {
        display: none;
    }
}

/* Animation for navbar items */
@keyframes navItemFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item {
    animation: navItemFade 0.5s ease forwards;
    opacity: 0;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }

/* Glow effect for special elements */
.nav-link.special {
    position: relative;
}

.nav-link.special::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.nav-link.special:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
        /* Hero Section Styles */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(46, 159, 234, 0.7)), 
                        url('/assets/imgs/Cover.avif');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--color-white);
        }
       .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            max-width: 800px;
            margin-right: auto;
            margin-left: auto;
            line-height: 1.6;
        }

        .hero-btn {
            background: var(--color-accent);
            color: var(--color-white);
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.3rem;
            font-weight: 600;
            border-radius: 50px;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .hero-btn:hover {
            background: var(--color-accent-dark);
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
            color: var(--color-white);
        }

        .hero-btn i {
            margin-left: 10px;
            font-size: 1.5rem;
        }
        /* Floating elements for visual interest */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 70%;
            left: 80%;
            animation-delay: -5s;
        }

        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 40%;
            left: 85%;
            animation-delay: -10s;
        }

        .floating-element:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 80%;
            left: 15%;
            animation-delay: -7s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }
            50% {
                transform: translateY(-50px) rotate(180deg);
                opacity: 0.7;
            }
            100% {
                transform: translateY(0) rotate(360deg);
                opacity: 1;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
        
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
        }

        @media (max-width: 576px) {
            .hero-section {
                height: auto;
                min-height: 100vh;
                padding: 6rem 0;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-btn {
                padding: 0.8rem 2rem;
                font-size: 1.1rem;
            }
        }
        .section {
            padding: 5rem 0;
        }

        .section-alt {
            background-color: var(--background-alt);
        }
        /* Services Section Styles */
        .services-main-section {
            padding: 6rem 0;
            background: var(--background-alt);
            position: relative;
            overflow: hidden;
        }

        .services-main-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232e9fea' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }

        .services-container {
            position: relative;
            z-index: 1;
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-main-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--color-main);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .services-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .services-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Services Cards Grid */
        .services-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        /* Service Card Styles */
        .service-card-item {
            background: var(--color-white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: var(--background-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-card-item:hover::before {
            transform: scaleX(1);
        }

        .service-card-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto 1.5rem;
            background: var(--background-gradient);
            border-radius: 50%;
            color: var(--color-white);
            font-size: 2rem;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .service-card-item:hover .service-card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card-content {
            padding: 0 2rem 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-main);
            margin-bottom: 1rem;
            text-align: center;
        }

        .service-card-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .service-card-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--color-accent);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            background: rgba(72, 172, 172, 0.1);
            align-self: flex-start;
        }

        .service-card-link:hover {
            color: var(--color-white);
            background: var(--color-accent);
            transform: translateX(-5px);
        }

        .service-card-link i {
            margin-right: 5px;
            transition: transform 0.3s ease;
        }

        .service-card-link:hover i {
            transform: translateX(-3px);
        }

        /* Special feature for washing machine card */
        .service-card-washing {
            position: relative;
            overflow: hidden;
        }

        .service-card-washing::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(46, 159, 234, 0.1) 0%,
                rgba(255, 255, 255, 0) 50%,
                rgba(72, 172, 172, 0.1) 100%
            );
            transform: rotate(30deg);
            z-index: 0;
        }

        /* Special feature for refrigerator card */
        .service-card-refrigerator {
            border: 2px solid transparent;
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(135deg, var(--color-main), var(--color-accent)) border-box;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .services-cards-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .services-main-section {
                padding: 4rem 0;
            }
            
            .services-main-title {
                font-size: 2.2rem;
            }
            
            .services-subtitle {
                font-size: 1.1rem;
            }
            
            .services-cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .services-main-title {
                font-size: 1.8rem;
            }
            
            .service-card-content {
                padding: 0 1.5rem 1.5rem;
            }
            
            .service-card-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
        }
        /* About Section Styles */
        .about-company-section {
            padding: 6rem 0;
            background: var(--background-main);
            position: relative;
            overflow: hidden;
        }

        .about-company-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232e9fea' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }

        .about-container {
            position: relative;
            z-index: 1;
        }

        .about-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .about-main-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--color-main);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .about-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .about-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* About Content Styles */
        .about-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .about-content-item {
            background: var(--color-white);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .about-content-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 5px;
            height: 100%;
            background: var(--background-gradient);
            transition: all 0.3s ease;
        }

        .about-content-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .about-content-item:hover::before {
            width: 8px;
        }

        .about-item-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            background: var(--background-gradient);
            border-radius: 50%;
            color: var(--color-white);
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .about-content-item:hover .about-item-icon {
            transform: scale(1.1);
        }

        .about-item-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-main);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .about-item-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background: var(--color-accent);
        }

        .about-item-text {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        /* Services List Styles */
        .services-list-container {
            background: var(--background-alt);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-sm);
        }

        .services-list-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-main);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .services-list-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .service-list-item {
            display: flex;
            align-items: center;
            padding: 0.8rem 1rem;
            background: var(--color-white);
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            transition: all 0.2s ease;
        }

        .service-list-item:hover {
            transform: translateX(-5px);
            box-shadow: var(--shadow-md);
        }

        .service-list-icon {
            color: var(--color-accent);
            margin-left: 0.8rem;
            font-size: 1.2rem;
        }

        .service-list-name {
            color: var(--text-primary);
            font-weight: 500;
        }

        /* Contact Box Styles */
        .contact-info-box {
            background: var(--background-gradient);
            border-radius: 16px;
            padding: 3rem;
            color: var(--color-white);
            text-align: center;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .contact-info-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(30deg);
            z-index: 0;
        }

        .contact-info-content {
            position: relative;
            z-index: 1;
        }

        .contact-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--color-white);
        }

        .contact-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .contact-phone {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--color-white);
            color: var(--color-main);
            font-size: 1.8rem;
            font-weight: 800;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .contact-phone:hover {
            transform: scale(1.05);
            color: var(--color-main-dark);
            box-shadow: var(--shadow-lg);
        }

        .contact-phone i {
            margin-left: 0.8rem;
            font-size: 1.5rem;
        }

        /* Guarantee Badge */
        .guarantee-badge {
            display: inline-flex;
            align-items: center;
            background: var(--color-accent);
            color: var(--color-white);
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 1rem;
        }

        .guarantee-badge i {
            margin-left: 0.5rem;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .about-content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .services-list-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .about-company-section {
                padding: 4rem 0;
            }
            
            .about-main-title {
                font-size: 2.2rem;
            }
            
            .about-subtitle {
                font-size: 1.1rem;
            }
            
            .about-content-item {
                padding: 2rem;
            }
            
            .contact-info-box {
                padding: 2rem;
            }
            
            .contact-phone {
                font-size: 1.5rem;
                padding: 0.8rem 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .about-main-title {
                font-size: 1.8rem;
            }
            
            .about-item-title {
                font-size: 1.4rem;
            }
            
            .services-list-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-phone {
                font-size: 1.3rem;
                padding: 0.7rem 1.2rem;
            }
        }
        /* Contact Section Styles */
        .contact-us-section {
            padding: 6rem 0;
            background: var(--background-alt);
            position: relative;
            overflow: hidden;
        }

        .contact-us-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232e9fea' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }

        .contact-container {
            position: relative;
            z-index: 1;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .contact-main-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--color-main);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .contact-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .contact-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Contact Content Styles */
        .contact-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: stretch;
        }

        /* Map Styles */
        .contact-map-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            height: 100%;
            transition: all 0.3s ease;
        }

        .contact-map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }

        .contact-map-iframe {
            width: 100%;
            height: 100%;
            min-height: 500px;
            border: none;
            display: block;
        }

        /* Contact Info Styles */
        .contact-info-card {
            background: var(--color-white);
            border-radius: 16px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: var(--background-gradient);
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .contact-info-header {
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .contact-info-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            background: var(--background-gradient);
            border-radius: 50%;
            color: var(--color-white);
            font-size: 2rem;
        }

        .contact-info-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-main);
            margin-bottom: 0.5rem;
        }

        .contact-info-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* Contact Details Styles */
        .contact-details {
            margin-bottom: 2.5rem;
        }

        .contact-detail-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1rem;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .contact-detail-item:hover {
            background: rgba(72, 172, 172, 0.05);
        }

        .contact-detail-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(46, 159, 234, 0.1);
            border-radius: 50%;
            color: var(--color-main);
            font-size: 1.3rem;
            margin-left: 1rem;
            flex-shrink: 0;
        }

        .contact-detail-content {
            flex-grow: 1;
        }

        .contact-detail-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--color-main);
            margin-bottom: 0.5rem;
        }

        .contact-detail-text {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Phone Numbers Styles */
        .phone-numbers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .phone-number-item {
            display: flex;
            align-items: center;
            padding: 0.8rem 1rem;
            background: var(--background-alt);
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .phone-number-item:hover {
            background: rgba(46, 159, 234, 0.1);
            transform: translateX(-5px);
        }

        .phone-number-icon {
            color: var(--color-accent);
            margin-left: 0.8rem;
            font-size: 1.1rem;
        }

        .phone-number {
            color: var(--text-primary);
            font-weight: 500;
            direction: ltr;
            text-align: left;
        }

        /* Call Button */
        .contact-call-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--background-gradient);
            color: var(--color-white);
            font-size: 1.3rem;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            margin-top: 1rem;
            width: 100%;
            text-align: center;
        }

        .contact-call-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: var(--color-white);
        }

        .contact-call-button i {
            margin-left: 0.8rem;
            font-size: 1.5rem;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .contact-content-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .contact-map-iframe {
                min-height: 400px;
            }
            
            .phone-numbers-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .contact-us-section {
                padding: 4rem 0;
            }
            
            .contact-main-title {
                font-size: 2.2rem;
            }
            
            .contact-subtitle {
                font-size: 1.1rem;
            }
            
            .contact-info-card {
                padding: 2rem;
            }
            
            .phone-numbers-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .contact-main-title {
                font-size: 1.8rem;
            }
            
            .contact-info-title {
                font-size: 1.5rem;
            }
            
            .contact-detail-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-detail-icon {
                margin-left: 0;
                margin-bottom: 1rem;
            }
        }
/* Modern Footer Styles */
footer {
    background: linear-gradient(135deg, var(--color-dark-gray) 0%, var(--color-black) 100%);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(46, 159, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(72, 172, 172, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-main) 20%, 
        var(--color-accent) 50%, 
        var(--color-main) 80%, 
        transparent 100%);
}

footer .container {
    position: relative;
    z-index: 2;
}

footer hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%);
    margin: 2rem auto;
    opacity: 0.6;
}

footer .text-center {
    position: relative;
}

footer .text-center p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-light-gray);
    margin: 0;
    padding: 1rem 2rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

footer .text-center p::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(46, 159, 234, 0.1) 0%, 
        rgba(72, 172, 172, 0.1) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

footer .text-center p:hover::before {
    opacity: 1;
}

footer .text-center p:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(46, 159, 234, 0.3);
}

/* Copyright symbol styling */
footer .text-center p::after {
    content: '©';
    display: inline-block;
    margin: 0 8px 0 12px;
    color: var(--color-main);
    font-weight: 700;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Floating elements for visual interest */
footer .floating-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

footer .floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatFooter 8s infinite ease-in-out;
}

footer .floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

footer .floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 80%;
    animation-delay: -2s;
}

footer .floating-element:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 40%;
    left: 85%;
    animation-delay: -4s;
}

@keyframes floatFooter {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translateY(10px) rotate(240deg);
        opacity: 0.7;
    }
}

/* Social media icons (optional addition) */
footer .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

footer .social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

footer .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--background-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

footer .social-link:hover::before {
    opacity: 1;
}

footer .social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

footer .social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(46, 159, 234, 0.4);
}

footer .social-link:hover i {
    color: var(--color-white);
    transform: rotate(360deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer {
        padding: 2.5rem 0 1rem;
    }
    
    footer .text-center p {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    footer .social-links {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    footer .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    footer .text-center p {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    footer .text-center p::after {
        margin: 0 6px 0 8px;
        font-size: 1rem;
    }
}

footer .back-to-top {
    position: absolute;
    top: -25px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 50px;
    background: var(--background-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
}

footer .back-to-top:hover {
    transform: translateX(50%) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

footer .back-to-top i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

footer .back-to-top:hover i {
    transform: translateY(-2px);
}
        .floating-contact {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .contact-btn {
            display: flex;
            align-items: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .contact-btn:hover::before {
            opacity: 1;
        }

        .contact-btn:hover {
            width: 200px;
            border-radius: 30px;
            transform: translateY(-5px);
        }
        .contact-btn:hover .btn-text {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-btn:hover .btn-label {
            opacity: 1;
            transform: translateX(0);
        }
        .btn-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
            flex-shrink: 0;
            z-index: 2;
        }
        .btn-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-right: 20px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease 0.1s;
        }
        .contact-btn:hover .btn-content {
            opacity: 1;
            transform: translateX(0);
        }

        .btn-text {
            font-weight: 700;
            font-size: 1rem;
            line-height: 1;
        }
        .btn-label {
            font-size: 0.75rem;
            opacity: 0.8;
            margin-top: 2px;
        }

        .btn-call {
            background: var(--btn-bg);
            color: var(--btn-text);
        }
        .btn-call:hover {
            background: var(--btn-bg-hover);
        }

        .btn-whatsapp {
            background: var(--btn-accent-bg);
            color: var(--btn-text);
        }

        .btn-whatsapp:hover {
            background: var(--btn-accent-hover);
        }