* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0059A9;
    --primary-dark: #0E5291;
    --secondary-color: #1D2172;
    --secondary-dark: #00103C;
    --dark-color: #00103C;
    --light-color: #ffffff;
    --text-color: #00103C;
    --text-light: #6894C9;
    --accent-color: #BBC1E3;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #1D2172 0%, #0059A9 50%, #6894C9 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(29, 33, 114, 0.95) 0%, rgba(0, 89, 169, 0.95) 100%);
}

body {
    font-family: 'Open Sans', 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

/* Headings - Montserrat */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.hero-subtitle,
.logo h1,
.main-card h3,
.product-card h3,
.service-card h3,
.about-text h3,
.story-text h3,
.value-item h4,
.contact-item h4,
.footer-section h3,
.footer-section h4,
.product-info h3,
.product-detail-info h1,
.cta-content h2,
.related-products h2 {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease,
                box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    opacity: 1;
}

.navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 58px;
    height: 58px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo:hover .logo-icon {
    transform: rotate(5deg);
}

.logo h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    display: block;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 89, 169, 0.08);
    border-radius: 10px;
    opacity: 0;
    transition: var(--transition);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(0, 89, 169, 0.1);
}

.nav-menu a.active::before {
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown .dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle svg,
.nav-dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Add a small gap bridge to prevent flickering */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 8px;
    background: transparent;
    z-index: 999;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0;
}

.dropdown-menu a::before {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 89, 169, 0.08);
    color: var(--primary-color);
    transform: translateX(-5px);
}

.dropdown-menu a:first-child {
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 4px;
}

.dropdown-menu a:first-child:hover {
    background: rgba(0, 89, 169, 0.1);
}

/* Google Translate Widget Styling - Globe Icon Only */
#google_translate_element {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    width: 42px;
    height: 42px;
    background: rgba(0, 89, 169, 0.08);
    border: 1px solid rgba(0, 89, 169, 0.15);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
}

#google_translate_element:hover {
    background: rgba(0, 89, 169, 0.15);
    border-color: rgba(0, 89, 169, 0.3);
    box-shadow: 0 4px 12px rgba(0, 89, 169, 0.2);
    transform: translateY(-2px) scale(1.05);
}

/* Hide Google Translate banner and branding */
#google_translate_element .goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-logo-link,
.goog-te-gadget-icon {
    display: none !important;
}

body {
    top: 0 !important;
    position: static !important;
}

/* Main Google Translate Select Styling - Hidden by default */
.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: transparent !important;
    font-size: 0 !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    z-index: 10;
}

/* Globe icon - visible */
#google_translate_element::before {
    content: '🌐';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    transition: var(--transition);
}

#google_translate_element:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #google_translate_element {
        width: 38px;
        height: 38px;
    }
    
    #google_translate_element::before {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    #google_translate_element {
        width: 36px;
        height: 36px;
    }
    
    #google_translate_element::before {
        font-size: 18px;
    }
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 89, 169, 0.08);
    border: 1px solid rgba(0, 89, 169, 0.15);
    border-radius: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Open Sans', 'Montserrat', sans-serif;
}

.lang-switcher:hover {
    background: rgba(0, 89, 169, 0.15);
    border-color: rgba(0, 89, 169, 0.25);
    transform: translateY(-2px);
}

.lang-switcher svg {
    width: 16px;
    height: 16px;
}

.btn-nav {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 89, 169, 0.3);
    white-space: nowrap;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 89, 169, 0.4);
}

.whatsapp-btn-nav {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-nav:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 33, 114, 0.85) 0%, rgba(0, 89, 169, 0.85) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}

.hero-slider-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 6;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: slideInDown 0.8s ease;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    font-size: 0.5em;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    transition: var(--transition);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: 'Open Sans', 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn svg {
    position: relative;
    z-index: 1;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover svg {
    transform: translateX(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover svg {
    transform: translateX(-3px);
}

.btn-block {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    opacity: 0.9;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.scroll-arrow svg {
    animation: scrollDown 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(5px);
        opacity: 0.7;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Products Section */
.products {
    background: var(--light-color);
}

.main-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.main-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.main-card:hover::before {
    transform: scaleX(1);
}

.main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 89, 169, 0.2);
}

.main-card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 89, 169, 0.3);
    transition: var(--transition);
}

.main-card:hover .main-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 89, 169, 0.4);
}

.main-card h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 900;
}

.main-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.main-card-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 89, 169, 0.3);
}

.main-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 89, 169, 0.4);
}

.products-card .main-card-icon {
    background: linear-gradient(135deg, #1D2172 0%, #0059A9 100%);
}

.services-card .main-card-icon {
    background: linear-gradient(135deg, #0059A9 0%, #6894C9 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    scroll-margin-top: 100px;
}

#products-details {
    padding-top: 40px;
}

.product-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 89, 169, 0.2);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    text-align: right;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-color);
    position: relative;
    padding-right: 20px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    scroll-margin-top: 100px;
}

#services-details {
    padding-top: 40px;
}

/* Products Page Styles */
.products-page {
    padding: 120px 0 80px;
    background: var(--light-color);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn {
    padding: 0;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', 'Montserrat', sans-serif;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.filter-btn:hover {
    color: var(--primary-color);
}

.filter-btn:hover::after {
    width: 100%;
}

.filter-btn.active {
    color: var(--primary-color);
    font-weight: 700;
}

.filter-btn.active::after {
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.products-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card-page {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.product-card-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-placeholder {
    font-size: 6rem;
    opacity: 0.9;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 900;
}

.product-info > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    flex: 1;
}

.product-features-page {
    list-style: none;
    margin-bottom: 25px;
}

.product-features-page li {
    padding: 8px 0;
    padding-right: 35px;
    color: var(--text-color);
    position: relative;
    font-weight: 500;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-features-page li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 8px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.4;
    width: 20px;
    text-align: center;
}

.product-action {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.product-btn-view {
    flex: 1;
    padding: 15px;
    background: var(--white);
    color: var(--primary-color);
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.product-btn-view:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.product-btn {
    flex: 1;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 89, 169, 0.3);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 89, 169, 0.4);
}

.product-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.product-btn.whatsapp-btn:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Product Detail Page */
.product-detail-page {
    padding: 120px 0 80px;
    background: var(--light-color);
}

.breadcrumb-nav {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-nav span {
    color: var(--text-light);
    opacity: 0.5;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder-large {
    font-size: 10rem;
    opacity: 0.9;
}

.product-badge-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail {
    flex: 1;
    height: 100px;
    background: var(--light-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-color);
    background: rgba(0, 89, 169, 0.1);
}

.thumbnail-placeholder {
    font-size: 2.5rem;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 900;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-specs {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 15px;
}

.product-specs h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.spec-value {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.product-features-detail {
    margin-bottom: 40px;
}

.product-features-detail h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 500;
}

.features-list li svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.whatsapp-icon-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.whatsapp-icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-icon-btn:hover::before {
    width: 100px;
    height: 100px;
}

.whatsapp-icon-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon-btn svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Product Tabs */
.product-tabs {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid var(--light-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Open Sans', 'Montserrat', sans-serif;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.tab-panel p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.specs-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-row {
    display: flex;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
}

.spec-name {
    font-weight: 600;
    color: var(--text-color);
}

.spec-detail {
    color: var(--text-light);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    padding: 25px;
    background: var(--light-color);
    border-radius: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-color);
}

.review-stars {
    color: #ffc107;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* Related Products */
.related-products {
    margin-top: 60px;
}

.related-products h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 900;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-image {
    width: 100%;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.related-placeholder {
    font-size: 4rem;
}

.related-card h4 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .image-placeholder-large {
        font-size: 6rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
}

.service-card {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border-right: 4px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 0.15;
    transform: translate(30px, -30px) scale(1.2);
}

.service-card-arrow {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 89, 169, 0.3);
}

.service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    background: var(--light-color);
}

.about-story {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
    text-align: right;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
}

.story-year {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.story-card p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.about-text {
    text-align: right;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    border-right: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.about-team {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: right;
}

.about-team h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-team p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin: 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Open Sans', 'Montserrat', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 89, 169, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--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 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
}

/* Professional Footer */
.footer-pro {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--dark-color) 100%);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-brand {
    padding-left: 30px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-logo-icon {
    width: 62px;
    height: 62px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 89, 169, 0.4);
}

.footer-social-link.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    transform: translateX(-5px);
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-actions {
        order: -1;
    }
    
    .btn-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .nav-actions {
        gap: 10px;
    }
    
    .btn-nav {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .lang-switcher {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: right;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        padding: 0;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-menu a {
        padding: 18px 20px;
        border-radius: 0;
    }
    
    .nav-menu a::before {
        border-radius: 0;
    }
    
    /* Mobile Dropdown Styles */
    .nav-dropdown {
        position: relative;
    }
    
    .nav-dropdown .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
    
    .nav-dropdown .dropdown-toggle svg {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-toggle svg {
        transform: rotate(180deg);
    }
    
    .nav-dropdown .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        background: rgba(0, 89, 169, 0.05);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        pointer-events: none;
        display: block !important;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px !important;
        padding: 10px 0 !important;
        margin-top: 5px !important;
        margin-bottom: 5px !important;
        pointer-events: auto !important;
    }
    
    /* Ensure dropdown is visible on mobile */
    @media (max-width: 768px) {
        .nav-dropdown.active .dropdown-menu {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
    }
    
    .dropdown-menu a {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .dropdown-menu a:first-child {
        border-bottom: 1px solid rgba(0, 89, 169, 0.1);
        margin-bottom: 5px;
    }
    
    .nav-actions {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
    }
    
    .btn-nav {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .title-line {
        font-size: 0.6em;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .hero-slider-controls {
        bottom: 80px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 25px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .about-main,
    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-story {
        padding: 30px 20px;
    }
    
    .story-text p {
        text-align: right;
    }

    .main-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .main-card {
        padding: 40px 30px;
    }
    
    .main-card-icon {
        width: 100px;
        height: 100px;
    }
    
    .main-card h3 {
        font-size: 1.6rem;
    }
    
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-card,
    .service-card {
        padding: 30px 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .story-year {
        font-size: 2.5rem;
    }
    
    .about-story,
    .about-team {
        padding: 25px 15px;
    }
}

/* Services Page Styles */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 33, 114, 0.9) 0%, rgba(0, 89, 169, 0.9) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Services Overview Section */
.services-overview {
    background: var(--light-color);
    padding: 120px 0 80px;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card-detailed {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.service-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card-detailed:hover::before {
    transform: scaleX(1);
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 89, 169, 0.2);
}

.service-card-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-card-link svg {
    transition: var(--transition);
}

.service-card-detailed:hover .service-card-link {
    color: var(--secondary-color);
}

.service-card-detailed:hover .service-card-link svg {
    transform: translateX(-5px);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 89, 169, 0.3);
    transition: var(--transition);
}

.service-card-detailed:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 89, 169, 0.4);
}

.service-number-badge {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
}

.service-card-detailed h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-detailed > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-color);
    font-weight: 500;
    padding: 12px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.service-features-list li:hover {
    background: rgba(0, 89, 169, 0.05);
    transform: translateX(-5px);
}

.service-features-list li svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--white);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.benefit-card:hover::before {
    opacity: 0.05;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 89, 169, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 89, 169, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(0, 89, 169, 0.4);
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Process Section */
.process-section {
    background: var(--light-color);
    padding: 80px 0;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 89, 169, 0.2);
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(0, 89, 169, 0.3);
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 12px 35px rgba(0, 89, 169, 0.4);
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.process-arrow {
    color: var(--primary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.process-arrow svg {
    width: 30px;
    height: 30px;
}

/* CTA Section for Services Page */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Professional CTA Section */
.cta-section-pro {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation: float 12s ease-in-out infinite reverse;
}

.cta-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.05;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

.cta-pro-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-pro-content {
    text-align: center;
}

.cta-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-pro-badge svg {
    color: #ffc107;
}

.cta-pro-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-pro-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-pro-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-pro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-pro-feature svg {
    color: #4ade80;
    flex-shrink: 0;
}

.cta-pro-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-pro-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.cta-pro-btn-primary:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.cta-pro-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.cta-pro-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.cta-pro-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px 35px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-pro-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    transition: var(--transition);
}

.cta-pro-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.cta-pro-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.cta-pro-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-pro-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

@media (max-width: 992px) {
    .cta-pro-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-pro-content {
        text-align: center;
    }

    .cta-pro-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-pro-features {
        justify-content: center;
    }

    .cta-pro-buttons {
        justify-content: center;
    }

    .cta-pro-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-pro-stat {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .cta-section-pro {
        padding: 70px 0;
    }

    .cta-pro-title {
        font-size: 2rem;
    }

    .cta-pro-desc {
        font-size: 1rem;
    }

    .cta-pro-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-pro-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-pro-btn-primary,
    .cta-pro-btn-secondary {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .cta-pro-stats {
        flex-direction: column;
        padding: 30px 25px;
    }

    .cta-pro-stat {
        min-width: auto;
    }

    .cta-pro-stat-number {
        font-size: 2rem;
    }
}

/* Responsive Design for Services Page */
@media (max-width: 968px) {
    .services-grid-detailed {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        padding: 30px 25px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large svg {
        width: 45px;
        height: 45px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

/* ====================== */
/* COMPREHENSIVE MOBILE FIXES */
/* ====================== */

/* Mobile Navigation Improvements */
@media (max-width: 992px) {
    .nav-wrapper {
        padding: 1rem 0;
    }
    
    .btn-nav {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
        order: 3;
    }
    
    .nav-actions {
        position: static;
        order: 2;
    }
    
    .lang-switcher {
        padding: 8px 14px;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Section Spacing */
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-title::after {
        width: 60px;
        height: 4px;
        bottom: -10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: 15px;
    }
    
    /* Navigation */
    .navbar {
        padding: 0;
    }
    
    .nav-wrapper {
        padding: 12px 0;
        gap: 10px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        width: 44px;
        height: 44px;
    }
    
    .logo-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        padding: 0;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        display: block;
        padding: 16px 20px;
        font-size: 1rem;
        border-radius: 0;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .lang-switcher {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .lang-switcher svg {
        width: 14px;
        height: 14px;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .hamburger span {
        width: 24px;
        height: 2px;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .title-line {
        font-size: 0.55em;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-features {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .hero-feature {
        padding: 8px 14px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .hero-feature svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 10px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-slider-controls {
        bottom: 20px;
        gap: 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Main Cards Mobile */
    .main-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .main-card {
        padding: 30px 20px;
    }
    
    .main-card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .main-card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .main-card h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .main-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .main-card-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* Products Grid Mobile */
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 25px 20px;
    }
    
    .product-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .product-card h3 {
        font-size: 1.25rem;
    }
    
    .product-card p {
        font-size: 0.9rem;
    }
    
    /* Service Cards Mobile */
    .service-card {
        padding: 25px 20px;
        border-right-width: 3px;
    }
    
    .service-number {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-card-arrow {
        width: 35px;
        height: 35px;
        bottom: 20px;
        left: 20px;
    }
    
    /* About Section Mobile */
    .about-story {
        padding: 25px 15px;
        margin-bottom: 40px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .story-text h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .story-text p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .story-card {
        padding: 25px;
        min-width: auto;
    }
    
    .story-year {
        font-size: 2.5rem;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .value-item {
        padding: 20px 15px;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 40px 0;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .about-team {
        padding: 25px 15px;
    }
    
    .about-team h3 {
        font-size: 1.4rem;
    }
    
    .about-team p {
        font-size: 1rem;
    }
    
    .image-placeholder {
        height: 250px;
        font-size: 5rem;
    }
    
    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    /* Footer Mobile */
    .footer-pro .footer-top {
        padding: 50px 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        padding-left: 0;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo-icon {
        width: 52px;
        height: 52px;
    }
    
    .footer-logo span {
        font-size: 1.5rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-links ul li {
        margin-bottom: 12px;
    }
    
    .footer-links ul li a {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .footer-contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-contact-item span {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        gap: 20px;
        justify-content: center;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
    
    /* Services Page Mobile */
    .services-overview {
        padding: 80px 0 60px;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card-detailed {
        padding: 25px 20px;
    }
    
    .service-card-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-large svg {
        width: 35px;
        height: 35px;
    }
    
    .service-number-badge {
        font-size: 1.5rem;
    }
    
    .service-card-detailed h3 {
        font-size: 1.3rem;
    }
    
    .service-card-detailed > p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .service-features-list {
        gap: 10px;
    }
    
    .service-features-list li {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .service-card-link {
        margin-top: 20px;
        padding-top: 15px;
        font-size: 0.9rem;
    }
    
    /* Benefits Grid Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .benefit-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    /* CTA Section Mobile */
    .cta-section-pro {
        padding: 60px 0;
    }
    
    .cta-pro-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .cta-pro-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .cta-pro-desc {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .cta-pro-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .cta-pro-feature {
        font-size: 0.9rem;
    }
    
    .cta-pro-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 10px;
    }
    
    .cta-pro-btn-primary,
    .cta-pro-btn-secondary {
        width: 100%;
        padding: 15px 25px;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    /* Products Page Mobile */
    .products-page {
        padding: 80px 0 60px;
    }
    
    .products-filter {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        font-size: 0.75rem;
    }
    
    .products-grid-page {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-card-page {
        border-radius: 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-placeholder {
        font-size: 4rem;
    }
    
    .product-badge {
        padding: 6px 15px;
        font-size: 0.75rem;
        top: 15px;
        right: 15px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h3 {
        font-size: 1.4rem;
    }
    
    .product-features-page li {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .product-action {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-btn-view,
    .product-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    /* Product Detail Page Mobile */
    .product-detail-page {
        padding: 80px 0 60px;
    }
    
    .breadcrumb-nav {
        font-size: 0.85rem;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }
    
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .main-image {
        height: 250px;
    }
    
    .image-placeholder-large {
        font-size: 5rem;
    }
    
    .product-badge-detail {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    .thumbnail-images {
        gap: 10px;
    }
    
    .thumbnail {
        height: 70px;
    }
    
    .thumbnail-placeholder {
        font-size: 1.8rem;
    }
    
    .product-detail-info h1 {
        font-size: 1.8rem;
    }
    
    .product-rating {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .product-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .product-specs {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .product-specs h3 {
        font-size: 1.1rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-features-detail h3 {
        font-size: 1.1rem;
    }
    
    .features-list {
        gap: 12px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .whatsapp-icon-btn {
        width: 60px;
        height: 60px;
    }
    
    .product-tabs {
        padding: 25px 15px;
    }
    
    .tabs-header {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .tab-panel h3 {
        font-size: 1.2rem;
    }
    
    .tab-panel p {
        font-size: 1rem;
    }
    
    .spec-row {
        flex-direction: column;
        gap: 5px;
        text-align: right;
    }
    
    .review-item {
        padding: 20px 15px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .related-products h2 {
        font-size: 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-card {
        padding: 20px;
    }
    
    .related-image {
        height: 120px;
    }
    
    .related-placeholder {
        font-size: 3rem;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .cta-pro-title {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 50px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-features {
        gap: 8px;
    }
    
    .hero-slider-controls {
        bottom: 15px;
    }
}

