/* Modern 2026 Design System - Light Mode */
:root {
    /* Color Palette - Light Mode Core */
    --bg-main: #f8f9fa;
    /* Soft Gray Background */
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    /* Frosted Glass */
    --bg-glass-strong: rgba(255, 255, 255, 0.9);

    /* Brand Colors - Neon Accents (Adjusted for Light Mode) */
    --primary: #4361ee;
    --primary-glow: rgba(67, 97, 238, 0.2);
    --secondary: #7209b7;
    --accent: #f72585;
    --success: #4cc9f0;

    /* Text Colors */
    --text-main: #1a1a2e;
    /* Deep dark blue for headings */
    --text-body: #4a4a5e;
    /* Softer dark for body text */
    --text-muted: #6c757d;
    --text-light: #ffffff;
    /* For buttons/dark backgrounds */

    /* Effects */
    --glass-blur: blur(16px);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 20px 60px rgba(67, 97, 238, 0.08);
    --shadow-glow: 0 5px 20px rgba(67, 97, 238, 0.25);
    --border-glass: 1px solid rgba(255, 255, 255, 0.6);
    --border-light: 1px solid rgba(0, 0, 0, 0.05);

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    --gradient-surface: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    background-color: var(--bg-main);
    color: var(--text-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1.5px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -1px;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Header & Nav */
header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Dynamic Navbar Scroll State - White Glass */
header.scrolled .navbar {
    background: rgba(255, 255, 255, 0.85);
    /* Whiter glass */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    width: auto;
    max-width: 300px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-body);
    font-weight: 600;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-nav:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-menu {
    display: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #f3f6ff 0%, transparent 60%),
        radial-gradient(circle at bottom right, #fff0f7 0%, transparent 60%);
}

/* Animated Background Blobs - Light Mode */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 8s infinite alternate;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    animation: drift 12s infinite alternate;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: var(--text-main);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(67, 97, 238, 0.15);
    /* Colored shadow */
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float 6s ease-in-out infinite;
    background: white;
}

/* Categories Section */
.categories {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #ffdd00;
}

/* Animated Background Blobs - Matching Hero */
.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(247, 37, 133, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(67, 97, 238, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

.categories::after {
    display: none;
}

.categories .container {
    position: relative;
    z-index: 1;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--bg-surface);
    border: 2px solid var(--primary);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(114, 9, 183, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: var(--radius-lg);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border: 2px solid var(--primary);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    border: 1px solid rgba(67, 97, 238, 0.1);
    padding: 10px;
    overflow: hidden;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.15) 0%, rgba(114, 9, 183, 0.15) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
    border-color: rgba(67, 97, 238, 0.3);
}

.category-card:hover .category-icon img {
    transform: scale(1.1);
}

.category-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-main);
}

.category-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.btn-whatsapp-card {
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    border: none;
}

.btn-whatsapp-card:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--bg-surface);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    margin-bottom: 20px;
    display: inline-block;
}

/* Title colors for yellow background sections */
/* OPTION 1: Dark brown - warm and earthy
.categories .section-title h2,
.websites .section-title h2,
.avis .section-title h2 {
    color: #8B4513;
}
*/

/* OPTION 2: White titles - clean, modern, with subtle text shadow
.categories .section-title h2,
.websites .section-title h2,
.avis .section-title h2 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
*/

/* OPTION 3: Deep orange/red
.categories .section-title h2,
.websites .section-title h2,
.avis .section-title h2 {
    color: #C0392B;
}
*/

/* OPTION 4: Deep purple - strong contrast
.categories .section-title h2,
.websites .section-title h2,
.avis .section-title h2 {
    color: #6A1B9A;
}
*/

/* OPTION 5: Dark blue - professional contrast
.categories .section-title h2,
.websites .section-title h2,
.avis .section-title h2 {
    color: #1A237E;
}
*/

/* Black titles for yellow background sections */
.categories .section-title h2,
.websites .section-title h2,
.avis .section-title h2 {
    color: #000000;
}

.categories .section-title h2 .text-gradient,
.websites .section-title h2 .text-gradient,
.avis .section-title h2 .text-gradient {
    color: #1A237E;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.categories .section-title p,
.websites .section-title p,
.avis .section-title p {
    color: #1a1a2e;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-surface);
    border: var(--border-light);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(114, 9, 183, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: var(--radius-lg);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: rgba(67, 97, 238, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.services-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(114, 9, 183, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: var(--border-light);
}

.services-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 700;
}

.services-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Pricing Section */
.websites {
    padding: 120px 0;
    background: #ffdd00;
    position: relative;
    overflow: hidden;
}

.websites::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* OPTION 2: Animated warm gradients */
    background: 
        radial-gradient(circle at 15% 25%, rgba(247, 37, 133, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(67, 97, 238, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    animation: gradientShift 15s ease infinite;
    /* OPTION 3: Cool cyan/mint overlays
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(77, 208, 225, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(178, 235, 242, 0.2) 0%, transparent 60%);
    */
    /* OPTION 4: Bold purple/pink overlays
    background: 
        radial-gradient(circle at 25% 30%, rgba(156, 39, 176, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(171, 71, 188, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(206, 147, 216, 0.15) 0%, transparent 65%);
    */
    /* OPTION 5: Energetic orange/yellow overlays
    background: 
        radial-gradient(circle at 20% 25%, rgba(255, 167, 38, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 80% 75%, rgba(255, 183, 77, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(255, 204, 128, 0.15) 0%, transparent 65%);
    */
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* OPTION 2 Animation
@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}
*/

.websites .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-surface);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(114, 9, 183, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border: 2px solid var(--primary);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.pricing-featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-card);
}

.pricing-card.pricing-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.pricing-header {
    margin-bottom: 40px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-main);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
}

.pricing-domain {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-body);
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary);
    font-size: 1.1rem;
    min-width: 20px;
}

.pricing-features i.fa-check-circle {
    color: var(--primary);
}

.pricing-features i.fa-plus-circle {
    color: var(--accent);
}

.pricing-features li strong {
    color: var(--text-main);
    font-weight: 600;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    background: var(--bg-surface);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    gap: 25px;
    border: var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    align-items: flex-start;
}

.feature-list li:hover {
    border-color: rgba(67, 97, 238, 0.3);
    transform: translateX(10px);
    box-shadow: var(--shadow-card);
    background: var(--bg-surface);
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--accent);
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(247, 37, 133, 0.1);
}

.feature-list li:hover i {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
}

.feature-list li div {
    flex: 1;
}

.feature-list li div h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 600;
}

.feature-list li div p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Avis (Testimonials) */
.avis {
    padding: 120px 0;
    background: #ffdd00;
    position: relative;
    overflow: hidden;
}

.avis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(247, 37, 133, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(67, 97, 238, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

.avis .container {
    position: relative;
    z-index: 1;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.avis-card {
    background: var(--bg-surface);
    border: 2px solid var(--primary);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.avis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(114, 9, 183, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: var(--radius-lg);
}

.avis-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border: 2px solid var(--primary);
}

.avis-card:hover::before {
    opacity: 1;
}

.avis-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.avis-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    border: 1px solid rgba(67, 97, 238, 0.1);
    flex-shrink: 0;
}

.avis-info h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 5px;
    font-weight: 600;
}

.avis-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.avis-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.avis-rating i {
    color: #FFD700;
    font-size: 1rem;
}

.avis-text {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .avis-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .avis-card {
        padding: 30px;
    }
}

/* Portfolio */
.portfolio {
    padding: 120px 0;
    background: var(--bg-surface);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(247, 37, 133, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.portfolio .container {
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    background: var(--bg-surface);
    border: var(--border-light);
    transition: var(--transition);
    aspect-ratio: 1;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.4) 0%, rgba(114, 9, 183, 0.4) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: rgba(67, 97, 238, 0.3);
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
}

.portfolio-item:hover::after {
    opacity: 1;
}

/* About & Contact Modern */
.about {
    background: var(--bg-surface);
    padding: 120px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: var(--border-light);
    width: 100%;
    height: auto;
}

.about-badge {
    background: var(--bg-surface);
    box-shadow: var(--shadow-soft);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 30px;
    border: var(--border-light);
    transition: var(--transition);
}

.about-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: rgba(67, 97, 238, 0.2);
}

.about-badge i {
    font-size: 1.2rem;
}

.contact {
    padding: 120px 0;
    position: relative;
    background: var(--bg-main);
}


.contact-container {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: var(--border-light);
}

.contact-info {
    background: var(--primary);
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-info h3 {
    color: white;
    margin-bottom: 10px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item div h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-item div p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.contact-form {
    padding: 60px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    background: var(--bg-main);
    border: var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: inherit;
    margin-bottom: 20px;
    transition: var(--transition);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: var(--bg-surface);
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Websites Features Image */

/* Footer */
footer {
    background: var(--text-main);
    color: var(--text-light);
    padding: 50px 0 25px;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    display: block;
    color: white;
}

.footer-links h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px) rotate(10deg);
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.footer-links {
    text-align: center;
}

.footer-links h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.floating-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.floating-scroll-top {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(67, 97, 238, 0.5);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animations Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -30px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        width: 95%;
        padding: 0 30px;
    }

    .hero-content,
    .about-content {
        gap: 60px;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .container {
        width: 95%;
        padding: 0 20px;
    }

    .navbar {
        padding: 12px 25px;
    }

    .nav-links {
        gap: 30px;
    }

    .whatsapp-nav span {
        display: none;
    }

    .whatsapp-nav {
        padding: 10px 15px;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-content,
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.pricing-featured {
        transform: scale(1);
    }

    .pricing-card.pricing-featured:hover {
        transform: translateY(-10px);
    }

    .hero-text p,
    .section-title p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .about-image {
        order: -1;
        width: 100%;
    }

    .services,
    .websites,
    .portfolio,
    .about,
    .contact {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    /* Contact becomes stacked on mobile */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px 30px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .footer-content {
        justify-content: center;
    }

    .footer-links ul {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        top: 10px;
        padding: 0 10px;
    }

    .navbar {
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 50px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.9);
    }

    header.scrolled .navbar {
        padding: 12px 20px;
    }

    .logo-img {
        height: 35px;
        max-width: 240px;
    }

    .nav-links {
        display: none !important;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        display: block;
        width: 100%;
        color: var(--text-main);
        transition: var(--transition);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary);
        padding-left: 10px;
        font-weight: 600;
    }
    
    .nav-links a.active::after {
        display: none; /* Hide underline on mobile */
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Mobile menu overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
        animation: fadeIn 0.4s ease;
        backdrop-filter: blur(2px);
    }

    .nav-contact {
        gap: 0;
        min-width: auto;
    }

    .whatsapp-nav {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .whatsapp-nav span {
        display: none;
    }

    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-card {
        padding: 30px 25px;
    }

    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-list li {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .feature-list li:hover {
        transform: translateY(-5px);
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .price-amount {
        font-size: 2.8rem;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header {
        top: 5px;
        padding: 0 5px;
    }

    .navbar {
        padding: 10px 15px;
    }

    .logo-img {
        height: 30px;
        max-width: 210px;
    }

    .whatsapp-nav {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .services,
    .websites,
    .portfolio,
    .about,
    .contact {
        padding: 60px 0;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }
}