/* Pomparts - Main Styles */

/* Root Variables */
:root {
    --turquoise-primary: #00CED1;
    --turquoise-dark: #008B8B;
    --turquoise-light: #48D1CC;
    --turquoise-extra-light: #AFEEEE;
    --dark-primary: #0a0a0a;
    --dark-secondary: #1a1a2e;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-secondary);
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Main Content Wrapper */
.main-content {
    padding-top: 120px;
    min-height: 100vh;
}

/* Page Header (for inner pages) */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--turquoise-dark) 0%, var(--turquoise-primary) 100%);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="400" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.6);
    padding: 0 12px;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(26, 26, 46, 0.95) 0%,
        rgba(10, 10, 10, 0.9) 50%,
        rgba(0, 139, 139, 0.8) 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2300CED1" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,96C1248,96,1344,128,1392,144L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

.animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animated-particles::before,
.animated-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--turquoise-primary) 0%, transparent 70%);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.animated-particles::before {
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.animated-particles::after {
    bottom: -150px;
    left: -150px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 50px) scale(1.05); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 40px 0;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--turquoise-light), var(--turquoise-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.turquoise-text {
    color: var(--turquoise-primary) !important;
    text-shadow: 0 0 30px rgba(0, 206, 209, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--turquoise-primary), var(--turquoise-dark));
    color: var(--white);
    border: none;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 206, 209, 0.4);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid var(--turquoise-primary);
}

.btn-outline-primary:hover {
    background: var(--turquoise-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 206, 209, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.stat-item i {
    font-size: 30px;
    color: var(--turquoise-primary);
}

.stat-item .counter {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 5px;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-3d-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg,
        rgba(0, 206, 209, 0.1) 0%,
        rgba(0, 206, 209, 0.05) 50%,
        transparent 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 15s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: translate(-50%, -50%) rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: translate(-50%, -50%) rotate(180deg);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: translate(-50%, -50%) rotate(270deg);
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 206, 209, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    animation: floating 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-card i {
    font-size: 20px;
    color: var(--turquoise-primary);
}

.floating-card.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--turquoise-primary);
    border-radius: 25px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--turquoise-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-secondary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-medium);
    font-weight: 400;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--turquoise-primary), transparent);
}

.decoration-icon {
    color: var(--turquoise-primary);
    font-size: 24px;
}

/* Services Section */
.services-section {
    background: var(--gray-light);
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 206, 209, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--turquoise-primary), var(--turquoise-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 40px;
    color: var(--turquoise-primary);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    transition: var(--transition);
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.1), rgba(0, 206, 209, 0.05));
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover .icon-bg {
    transform: scale(1.2) rotate(45deg);
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.2), rgba(0, 206, 209, 0.1));
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-secondary);
}

.service-description {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray-medium);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--turquoise-primary);
    margin-right: 10px;
    font-size: 12px;
}

.service-link {
    color: var(--turquoise-primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
    color: var(--turquoise-dark);
}

/* Why Us Section */
.why-us-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 206, 209, 0.02);
    border-radius: 15px;
    transition: var(--transition);
}

.why-us-item:hover {
    background: rgba(0, 206, 209, 0.05);
    transform: translateX(10px);
}

.item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--turquoise-primary), var(--turquoise-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon i {
    color: var(--white);
    font-size: 24px;
}

.item-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-secondary);
}

.item-content p {
    color: var(--gray-medium);
    font-size: 14px;
    line-height: 1.6;
}

.why-us-image {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.7), rgba(0, 139, 140, 0.7)),
                url('../images/why-us.jpg') center/cover;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--turquoise-primary), var(--turquoise-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 206, 209, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.experience-badge .years {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Clients Section */
.clients-section {
    background: linear-gradient(to bottom, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.03) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Logo Slider Styles */
.logo-slider-container {
    padding: 40px 0;
    position: relative;
}

.logo-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 70px; /* Space for buttons */
}

.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.logo-slide {
    flex: 0 0 auto;
    /* Width will be set by JavaScript */
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 206, 209, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.15);
    border-color: var(--turquoise-primary);
}

.client-logo:hover::before {
    opacity: 1;
}

.client-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.client-logo:hover .client-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--turquoise-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    color: var(--turquoise-primary);
    font-size: 18px;
    pointer-events: auto !important;
}

.slider-nav:hover {
    background: var(--turquoise-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav-prev {
    left: 10px;
}

.slider-nav-next {
    right: 10px;
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-nav:disabled:hover {
    background: var(--white);
    color: var(--turquoise-primary);
    transform: translateY(-50%);
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--turquoise-primary);
    width: 30px;
    border-radius: 5px;
}

.slider-dot:hover:not(.active) {
    background: #b0b0b0;
}

/* Responsive */
@media (max-width: 1400px) {
    .logo-slide {
        width: calc(25% - 22.5px); /* 4 items */
    }
}

@media (max-width: 1200px) {
    .logo-slide {
        width: calc(33.333% - 20px); /* 3 items */
    }

    .slider-nav-prev {
        left: -20px;
    }

    .slider-nav-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .logo-slide {
        width: calc(50% - 15px); /* 2 items */
    }

    .logo-slider-track {
        gap: 20px;
    }

    .client-logo {
        height: 120px;
        padding: 20px 15px;
    }

    .client-img {
        max-height: 60px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-nav-prev {
        left: -15px;
    }

    .slider-nav-next {
        right: -15px;
    }
}

@media (max-width: 480px) {
    .logo-slide {
        width: calc(100% - 0px); /* 1 item */
    }

    .logo-slider-track {
        gap: 15px;
    }

    .client-logo {
        height: 100px;
        padding: 15px;
    }

    .client-img {
        max-height: 50px;
    }

    .slider-nav-prev {
        left: 10px;
    }

    .slider-nav-next {
        right: 10px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--turquoise-dark) 0%, var(--turquoise-primary) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,96C1248,96,1344,128,1392,144L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
    background-size: cover;
}

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

.cta-title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
    overflow: hidden;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
    width: auto;
    padding: 0 15px;
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    background: var(--dark-secondary);
    color: var(--white);
    padding: 8px 0;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: var(--transition);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--turquoise-primary), var(--turquoise-dark));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.3);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
}

/* Product Category Cards */
.category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--turquoise-primary), var(--turquoise-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 32px;
}

.category-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-secondary);
}

.category-desc {
    color: var(--gray-medium);
    margin-bottom: 20px;
    font-size: 15px;
}

.product-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray-dark);
    font-size: 14px;
}

.product-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--turquoise-primary);
    font-weight: bold;
}

/* Category Button Override */
.category-btn {
    color: var(--turquoise-primary) !important;
    border-color: var(--turquoise-primary) !important;
    background: transparent !important;
    margin-top: auto;
    width: 100%;
    padding: 12px 20px;
}

.category-btn:hover {
    background: var(--turquoise-primary) !important;
    color: var(--white) !important;
    border-color: var(--turquoise-primary) !important;
}

/* Modal Fixes */
.modal-dialog {
    margin-top: 130px;
    margin-bottom: 80px;
}

.modal-dialog.modal-lg {
    max-width: 900px;
}

@media (max-width: 991px) {
    .modal-dialog {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .modal-dialog {
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 10px;
        margin-right: 10px;
    }
}

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