/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8f9fa;
}

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

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0;
}


/* Header Styles */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-top {
    background: transparent;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header.scrolled .header-top {
    background: #2c3e50;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 90px;
}

/* .contact-info span {
    margin-right: 20px;
} */

.contact-info i {
    margin-right: 5px;
    color: #3498db;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.contact-info span {
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    font-weight: 500;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 90px;
    transition: all 0.3s ease;
}

.nav-brand h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.header.scrolled .nav-brand h2 {
    color: #2c3e50;
    text-shadow: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 6px rgba(0,0,0,0.2), 0 0 15px rgba(0,0,0,0.4);
    background: rgba(0,0,0,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.header.scrolled .nav-menu a {
    color: #333;
    text-shadow: none;
    background: transparent;
    backdrop-filter: none;
}

.nav-menu a:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-menu a:hover::after {
    width: 80%;
}

.header.scrolled .nav-menu a::after {
    bottom: -5px;
}

.header.scrolled .nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.4);
    border-radius: 2px;
}

.header.scrolled .hamburger span {
    background: #333;
    box-shadow: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}


/* Fullscreen Carousel Background */
.hero-carousel-fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-carousel-fullscreen .carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel-fullscreen .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.6s ease-in-out;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.hero-carousel-fullscreen .carousel-slide.active {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 2;
}

.hero-carousel-fullscreen .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-carousel-fullscreen .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 80px 20px 40px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
    z-index: 3;
}

.hero-carousel-fullscreen .carousel-slide.active .slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
    color: white;
    margin-bottom: 25px;
    
}

.overlay-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.overlay-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

/* Hero Content Overlay */
.hero-content-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 0 80px;
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 200px);
    pointer-events: auto;
}

.hero-text {
    max-width: 600px;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3498db;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 25px 25px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.carousel-slide.active .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero-carousel-fullscreen .carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: auto;
    z-index: 20;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: auto;
    z-index: 20;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    z-index: 25;
    position: relative;
}

.carousel-btn:hover {
    background: rgba(52, 152, 219, 0.9);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.hero-carousel-fullscreen .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.5);
}

/* Carousel fade transition */
.carousel-slide.fade-out {
    opacity: 0;
    transform: translateX(-100%);
}

.carousel-slide.fade-in {
    opacity: 1;
    transform: translateX(0);
}


/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 15px 0 20px;
}

.about-text p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    margin: 30px 0;
}

.about-features li {
    padding: 10px 0;
    color: #2c3e50;
    font-weight: 500;
}

.about-features i {
    color: #27ae60;
    margin-right: 10px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-item p {
    color: #7f8c8d;
    font-weight: 500;
}

/* Goals and Commitments Section */
.goals-commitments {
    padding: 100px 0;
    background: white;
}

.goals-commitments-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.goals-section,
.commitments-section {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goals-section:hover,
.commitments-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.goals-header,
.commitments-header {
    text-align: center;
    margin-bottom: 40px;
}

.goals-icon,
.commitments-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.goals-icon i,
.commitments-icon i {
    font-size: 2.2rem;
    color: white;
}

.goals-header h3,
.commitments-header h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.goals-header p,
.commitments-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.goals-grid {
    display: grid;
    gap: 30px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #3498db;
}

.goal-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.goal-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.goal-content h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.goal-content p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.commitments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.commitment-item {
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #e74c3c;
}

.commitment-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.commitment-icon i {
    font-size: 1.8rem;
    color: white;
}

.commitment-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.commitment-content p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Services & Advantages Section */
.services-advantages {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-top: 15px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-section,
.advantages-section {
    margin-bottom: 80px;
}

.services-section h3,
.advantages-section h3 {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.services-section h3::after,
.advantages-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: white;
}

.products-showcase {
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.product-info p {
    color: #7f8c8d;
    line-height: 1.5;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 15px;
    text-align: center;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.products-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.products-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.products-cta p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.products-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}


/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.6;
}


.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-item p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Services CTA Inline */
.services-cta-inline {
    margin-top: 60px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.services-cta-inline .cta-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-cta-inline .cta-content p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-inline .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}



/* Clients Section */
.clients {
    padding: 100px 0;
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.client-category {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.client-category:hover {
    transform: translateY(-10px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.client-category h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.client-category p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.client-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.client-tag {
    background: #e9ecef;
    color: #495057;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.clients-logos {
    margin: 60px 0;
    text-align: center;
}

.clients-logos h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-placeholder:hover {
    border-color: #3498db;
    background: #f8f9fa;
    transform: translateY(-5px);
}

.logo-placeholder i {
    font-size: 2.5rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.logo-placeholder span {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Brand-specific styles */
.logo-placeholder.starbucks {
    border-color: #00704a;
    background: linear-gradient(135deg, #00704a, #1e3a2e);
    color: white;
}

.logo-placeholder.starbucks i {
    color: #ffffff;
}

.logo-placeholder.starbucks span {
    color: #ffffff;
    font-weight: 600;
}

.logo-placeholder.oxxo {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
}

.logo-placeholder.oxxo i {
    color: #ffffff;
}

.logo-placeholder.oxxo span {
    color: #ffffff;
    font-weight: 600;
}

.logo-placeholder.seven {
    border-color: #ff6600;
    background: linear-gradient(135deg, #ff6600, #e55a00);
    color: white;
}

.logo-placeholder.seven i {
    color: #ffffff;
}

.logo-placeholder.seven span {
    color: #ffffff;
    font-weight: 600;
}

.logo-placeholder.walmart {
    border-color: #004c91;
    background: linear-gradient(135deg, #004c91, #003366);
    color: white;
}

.logo-placeholder.walmart i {
    color: #ffffff;
}

.logo-placeholder.walmart span {
    color: #ffffff;
    font-weight: 600;
}

.logo-placeholder.mcdonalds {
    border-color: #ffc72c;
    background: linear-gradient(135deg, #ffc72c, #ffb000);
    color: #da020e;
}

.logo-placeholder.mcdonalds i {
    color: #da020e;
}

.logo-placeholder.mcdonalds span {
    color: #da020e;
    font-weight: 600;
}

.logo-placeholder.hospital {
    border-color: #28a745;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
}

.logo-placeholder.hospital i {
    color: #ffffff;
}

.logo-placeholder.hospital span {
    color: #ffffff;
    font-weight: 600;
}

.clients-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-container {
    /* padding: 0 90px; */
}

.contact-info-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.contact-form-main h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}

.contact-form-main input,
.contact-form-main textarea {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.contact-form-main input:focus,
.contact-form-main textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.contact-form-main input::placeholder,
.contact-form-main textarea::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.contact-form-main textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form-main button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-main button:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #3498db;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .navbar {
        padding: 15px 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.15);
        padding: 80px 0 20px;
        z-index: 9999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
        list-style: none;
    }
    
    .nav-menu a {
        color: #333 !important;
        text-shadow: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        padding: 15px 30px !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        border-radius: 10px !important;
        transition: all 0.3s ease !important;
        display: block !important;
        margin: 0 20px !important;
    }
    
    .nav-menu a:hover {
        background: rgba(52, 152, 219, 0.1) !important;
        color: #3498db !important;
        transform: translateY(-2px) !important;
    }
    
    .nav-menu a::after {
        display: none !important;
    }
    
    /* Mejorar el hamburger */
    .hamburger {
        z-index: 10001;
        position: relative;
        padding: 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .hamburger:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .hamburger.active {
        background: rgba(255, 255, 255, 0.2);
    }
    
    /* .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
     */
    .hero-content {
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-carousel-fullscreen .carousel-controls {
        padding: 0 20px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .hero-carousel-fullscreen .slide-overlay {
        padding: 60px 20px 30px;
    }
    
    .overlay-content h3 {
        font-size: 2rem;
    }
    
    .overlay-content p {
        font-size: 1.1rem;
    }
    
    .hero-carousel-fullscreen .carousel-indicators {
        bottom: 30px;
        gap: 12px;
    }
    
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .container {
        /* padding: 0 15px; */
    }
    
    .contact-info {
        padding: 0 15px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-item {
        margin-bottom: 25px;
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .logo-placeholder {
        min-height: 100px;
        padding: 20px 15px;
    }
    
    .logo-placeholder i {
        font-size: 2rem;
    }
    
    .logo-placeholder span {
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-carousel-fullscreen .carousel-controls {
        padding: 0 15px;
    }
    
    .hero-carousel-fullscreen .slide-overlay {
        padding: 40px 15px 20px;
    }
    
    .overlay-content h3 {
        font-size: 1.5rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    .hero-carousel-fullscreen .carousel-indicators {
        bottom: 25px;
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .goals-commitments-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .goals-section,
    .commitments-section {
        padding: 40px 30px;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
    }
    
    
    .services-grid,
    .advantages-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-section h3,
    .advantages-section h3 {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

/* Products Page Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/img/bg-brands.png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

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

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Products Filter */
.products-filter {
    padding: 40px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #e9ecef;
    background: white;
    color: #7f8c8d;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.filter-btn.active {
    background: #3498db;
    border-color: #3498db;
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* All Products Grid */
.all-products {
    padding: 80px 0;
    background: white;
}

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

.product-card-all {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.product-card-all:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card-all .product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-card-all .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-all:hover .product-image img {
    transform: scale(1.05);
}

.product-card-all .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    z-index: 3;
}

.product-card-all .product-info {
    padding: 25px;
}

.product-card-all .product-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.product-card-all .product-info p {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-card-all .product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    text-align: center;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

/* Products CTA Section */
.products-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #2c3e50;
}

/* Responsive for Products Page */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .filter-tabs {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .products-grid-all {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/img/background_water.jpg') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.services-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.services-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Detailed Section */
.services-detailed {
    padding: 100px 0;
    background: white;
}

.service-detail {
    margin-bottom: 100px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail.reverse .service-content {
    grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .service-text {
    order: 2;
}

.service-detail.reverse .service-gallery {
    order: 1;
}

.service-tag {
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.service-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-text p {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 12px 0;
    color: #2c3e50;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.service-features i {
    color: #27ae60;
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Service Gallery Styles */
.service-gallery {
    position: relative;
}

.service-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: #f8f9fa;
}

.service-carousel .carousel-slides {
    position: relative;
    width: 100%;
    height: 400px;
}

.service-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-carousel .carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.service-carousel .carousel-slide.prev {
    transform: translateX(-100%);
}

.service-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    padding: 20px;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 25px 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.service-carousel .carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 20;
}

.service-carousel .carousel-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.service-carousel .carousel-btn:hover {
    background: rgba(52, 152, 219, 0.9);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.service-carousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.service-carousel .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-carousel .indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.service-carousel .indicator:hover {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.5);
}

/* Single Image Service */
.service-image-single {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: #f8f9fa;
}

.service-image-single img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #f8f9fa;
    padding: 20px;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 25px 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Services CTA Section */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.services-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Active navigation link */
.nav-menu a.active {
    color: #3498db !important;
    background: rgba(52, 152, 219, 0.2) !important;
}

.header.scrolled .nav-menu a.active {
    color: #3498db !important;
    background: rgba(52, 152, 219, 0.1) !important;
}

/* Responsive for Services Page */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
    }
    
    .service-content,
    .service-detail.reverse .service-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    /* Reset order for reverse sections on mobile */
    .service-detail.reverse .service-text,
    .service-detail .service-text {
        order: 1 !important;
    }
    
    .service-detail.reverse .service-gallery,
    .service-detail .service-gallery {
        order: 2 !important;
    }
    
    .service-text h2 {
        font-size: 2rem;
    }
    
    .service-carousel .carousel-slides {
        height: 300px;
    }
    
    .service-carousel .carousel-slide img {
        padding: 15px;
    }
    
    .service-image-single img {
        height: 300px;
        padding: 15px;
    }
    
    .service-carousel .carousel-controls {
        padding: 0 15px;
    }
    
    .service-carousel .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .services-cta-inline {
        padding: 40px 30px;
        margin-top: 50px;
    }
    
    .services-cta-inline .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .services-cta-inline .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero p {
        font-size: 1rem;
    }
    
    .service-text h2 {
        font-size: 1.8rem;
    }
    
    .service-carousel .carousel-slides {
        height: 250px;
    }
    
    .service-carousel .carousel-slide img {
        padding: 12px;
    }
    
    .service-image-single img {
        height: 250px;
        padding: 12px;
    }
    
    .service-carousel .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .service-carousel .carousel-controls {
        padding: 0 10px;
    }
    
    .slide-caption,
    .image-caption {
        padding: 20px 15px 15px;
        font-size: 1rem;
    }
    
    .services-cta-inline {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .services-cta-inline .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .services-cta-inline .cta-content p {
        font-size: 0.95rem;
    }
    
    .services-cta-inline .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Ensure proper grid and order on small mobile devices */
    .service-content,
    .service-detail.reverse .service-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .service-detail.reverse .service-text,
    .service-detail .service-text {
        order: 1 !important;
    }
    
    .service-detail.reverse .service-gallery,
    .service-detail .service-gallery {
        order: 2 !important;
    }
}

/* Goals Page Header Styles */
.goals-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.goals-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/img/background_water.jpg') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.goals-page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

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

.goals-page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.goals-page-header p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive for Goals Page Header */
@media (max-width: 768px) {
    .goals-page-header h1 {
        font-size: 2.5rem;
    }
    
    .goals-page-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .goals-page-header h1 {
        font-size: 2rem;
    }
    
    .goals-page-header p {
        font-size: 1rem;
    }
}

/* Brands Section Styles */
.brands {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

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

.brands-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.1;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
}

.brands-collage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

/* Brands Carousel Styles */
.brands-carousel-container {
    position: relative;
    margin: 60px 0;
    z-index: 3;
}

.brands-carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
}

.brands-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 16px;
    width: fit-content;
}

.brands-carousel-slide {
    width: calc(33.333% - 11px);
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-carousel-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.brand-carousel-image {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
    border-radius: 15px;
}


.brands-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 20;
}

.brands-carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.brands-carousel-btn:hover {
    background: rgba(52, 152, 219, 0.9);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.brands-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.brands-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brands-indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.brands-indicator:hover {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.5);
}

.brands-description {
    margin-top: 60px;
    position: relative;
    z-index: 3;
}

.brands-text {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    text-align: center;
}

.brands-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.brands-text p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brands-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.brands-benefits li {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.brands-benefits li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.brands-benefits i {
    color: #27ae60;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Responsive for Brands Section */
@media (max-width: 768px) {
    .brands {
        padding: 80px 0;
    }
    
    .brands-carousel-container {
        margin: 40px 0;
    }
    
    .brands-carousel {
        max-width: 100%;
    }
    
    .brands-carousel-slide {
        height: 200px;
        width: calc(50% - 6px);
    }
    
    .brands-carousel-track {
        gap: 12px;
    }
    
    .brand-carousel-image {
        max-height: 70px;
        max-width: 75%;
    }
    
    
    .brands-carousel-controls {
        padding: 0 15px;
    }
    
    .brands-carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .brands-text {
        padding: 40px 30px;
    }
    
    .brands-text h3 {
        font-size: 1.8rem;
    }
    
    .brands-text p {
        font-size: 1rem;
    }
    
    .brands-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .brands-benefits li {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .brands {
        padding: 60px 0;
    }
    
    .brands-carousel-container {
        margin: 30px 0;
    }
    
    .brands-carousel-slide {
        height: 180px;
        width: calc(100% - 4px);
    }
    
    .brands-carousel-track {
        gap: 8px;
    }
    
    .brands-carousel {
        padding: 15px;
    }
    
    .brand-carousel-image {
        max-height: 60px;
        max-width: 70%;
    }
    
    
    .brands-carousel-controls {
        padding: 0 10px;
    }
    
    .brands-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .brands-carousel-indicators {
        bottom: 15px;
        gap: 6px;
    }
    
    .brands-indicator {
        width: 8px;
        height: 8px;
    }
    
    .brands-text {
        padding: 30px 20px;
    }
    
    .brands-text h3 {
        font-size: 1.6rem;
    }
    
    .brands-text p {
        font-size: 0.95rem;
    }
    
    .brands-benefits li {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .brands-benefits i {
        font-size: 1.1rem;
        margin-right: 12px;
    }
}
