:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --accent-blue: #3b82f6;
    --accent-light-blue: #93c5fd;
    --dark-bg: #0f172a;
    --dark-secondary: #1e293b;
    --dark-tertiary: #334155;
    --card-bg: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --whatsapp-green: #25D366;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(37, 99, 235, 0.05) 0%,
        rgba(37, 99, 235, 0.15) 50%,
        rgba(37, 99, 235, 0.05) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

img.loaded {
    opacity: 1;
}

*:focus {
    outline: none;
}

html {
    scroll-behavior: auto; /* Scroll instantané au lieu de smooth */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 10%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 90%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.6));
    }
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.logo span {
    color: var(--primary-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 25px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

.title-line {
    display: block;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.pricing-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    max-width: 700px;
}

.pricing-option {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .pricing-option {
        padding: 20px;
    }
}

.pricing-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-option:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.pricing-option:hover::before {
    opacity: 0.05;
}

.pricing-option.featured-option {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.15);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pricing-icon i {
    font-size: 28px;
    color: white;
}

.pricing-option h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.pricing-option .price {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pricing-option .price span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-features i {
    color: var(--secondary-color);
    font-size: 12px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 25px;
        font-size: 15px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    padding: 18px 35px;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp i {
    font-size: 24px;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp-large i {
    font-size: 26px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 25px;
        flex-wrap: wrap;
    }
}

.stat h3 {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .stat h3 {
        font-size: 32px;
    }
}

.stat p {
    color: var(--text-muted);
    font-size: 14px;
}

.hero-info {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-size: 15px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.info-badge:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.info-badge i {
    color: var(--primary-light);
    font-size: 18px;
}

.info-badge strong {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-image {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-professional {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(99, 102, 241, 0.3),
        inset 0 0 100px rgba(99, 102, 241, 0.1);
    animation: floatProfessional 4s ease-in-out infinite;
    z-index: 2;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
}

@keyframes floatProfessional {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.professional-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.1) contrast(1.1);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.floating-badge {
    position: absolute;
    background: rgba(30, 41, 59, 0.95);
    border: 2px solid rgba(99, 102, 241, 0.6);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    animation: floatBadge 4s infinite ease-in-out;
    z-index: 3;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.floating-badge i {
    font-size: 20px;
    color: var(--primary-light);
}

.floating-badge span {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-1 {
    top: 8%;
    left: -5%;
    animation-delay: 0s;
}

.badge-2 {
    top: 45%;
    right: -8%;
    animation-delay: 1.5s;
}

.badge-3 {
    bottom: 12%;
    left: -3%;
    animation-delay: 3s;
}



.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding: 8px;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* Trust Badges Section */
.trust-badges {
    padding: 60px 0;
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-badge {
    text-align: center;
    padding: 30px 20px;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(30, 41, 59, 0.5);
    transform: translateY(-5px);
}

.trust-badge i {
    font-size: 42px;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.trust-badge h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.trust-badge p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Section Styles */
section {
    padding: 40px 0;
}

@media (max-width: 768px) {
    section {
        padding: 25px 0;
    }
}

/* Industries Section */
.industries-section {
    background: var(--dark-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.industry-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.industry-card i {
    font-size: 48px;
    color: var(--primary-light);
    margin-bottom: 20px;
    display: block;
}

.industry-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.industry-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 15px;
}

.industry-card ul {
    list-style: none;
    padding: 0;
}

.industry-card ul li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
}

.industry-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Education Card */
.education-placeholder {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.education-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.education-card {
    text-align: center;
    color: white;
    padding: 40px;
}

.education-card i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.education-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.education-card p {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .education-card {
        padding: 30px 20px;
    }
    
    .education-card i {
        font-size: 60px;
    }
    
    .education-card h3 {
        font-size: 20px;
    }
    
    .education-card p {
        font-size: 14px;
    }
}

/* About Section */
.about-section {
    background: var(--dark-secondary);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.about-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-feature-item {
    text-align: center;
    padding: 25px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.feature-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.about-feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.about-image {
    display: grid;
    gap: 20px;
}

.about-visual {
    position: relative;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-visual:hover .about-main-img {
    transform: scale(1.05);
}

.about-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 35, 50, 0.7) 100%);
    pointer-events: none;
}

.about-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.about-card i {
    font-size: 36px;
    color: var(--primary-light);
    margin-bottom: 15px;
    display: block;
}

.about-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services Section */
.services {
    background: var(--light-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .service-card {
        padding: 20px;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.25);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.service-icon i {
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    position: relative;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--secondary-color);
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
    position: relative;
}

.service-link:hover {
    gap: 12px;
}

/* Portfolio Section */
.portfolio {
    background: var(--dark-secondary);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

.portfolio-item.hide {
    display: none;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

@media (max-width: 768px) {
    .portfolio-image img {
        height: 250px;
    }
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.portfolio-tags span {
    padding: 5px 15px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary-light);
}

.portfolio-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
}

/* Process Section */
.process {
    background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .process-step {
        padding: 20px;
        gap: 20px;
        margin-bottom: 30px;
    }
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 50px);
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.step-icon i {
    font-size: 32px;
    color: white;
}

/* WhatsApp API Section */
.whatsapp-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.whatsapp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.whatsapp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.whatsapp-feature {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.whatsapp-feature:hover {
    transform: translateY(-5px);
    border-color: var(--whatsapp-green);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, #20ba5a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.whatsapp-feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.whatsapp-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.whatsapp-cta-box {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--whatsapp-green);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.whatsapp-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 10px 60px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-icon-large i {
    font-size: 50px;
    color: white;
}

.whatsapp-cta-box h3 {
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
}

.whatsapp-cta-box > p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
}

.whatsapp-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    position: relative;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 15px;
}

.benefit i {
    color: var(--whatsapp-green);
    font-size: 18px;
}

/* Testimonials Section */
.testimonials {
    background: var(--dark-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    margin-right: 5px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
    }
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 15px;
    }
}

.faq-question i {
    color: var(--primary-light);
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

@media (max-width: 768px) {
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary-light);
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    background: white;
    color: var(--primary-color);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    font-size: 24px;
    color: white;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.social-facebook:hover {
    background: #1877f2;
}

.social-whatsapp:hover {
    background: var(--whatsapp-green);
}

.contact-form {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.8);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 15px;
}

.contact-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--text-primary);
}

.info-card small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 5px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--light-tertiary);
    padding: 60px 0 30px;
    border-top: 2px solid var(--border-color);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 35px;
    height: 35px;
}

.footer-col h3 {
    font-size: 24px;
    margin: 0;
}

.footer-col h3 span {
    color: var(--primary-light);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.footer-col ul li a i {
    margin-right: 8px;
    width: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 24px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .hamburger {
        display: flex;
        z-index: 10000;
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        border-top: 2px solid rgba(99, 102, 241, 0.5);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 12px 0;
        list-style: none;
    }

    .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(8px, -8px);
    }

    .nav-menu a {
        font-size: 16px;
        padding: 10px 15px;
        display: block;
        color: #f1f5f9;
        font-weight: 500;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-image {
        display: none;
    }

    .hero-mockup {
        width: 300px;
        height: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-selector {
        grid-template-columns: 1fr;
    }

    .hero-info {
        flex-direction: column;
        gap: 15px;
    }

    .info-badge {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        height: 400px;
        margin-top: 40px;
    }

    .hero-phone-mockup {
        width: 260px;
        height: 420px;
        border-radius: 35px;
        padding: 10px;
    }

    .phone-screen {
        border-radius: 28px;
    }

    .floating-badge {
        padding: 10px 16px;
        border-radius: 40px;
    }

    .floating-badge i {
        font-size: 16px;
    }

    .floating-badge span {
        font-size: 12px;
    }

    .badge-1 {
        top: 5%;
        left: -10%;
    }

    .badge-2 {
        top: 50%;
        right: -12%;
    }

    .badge-3 {
        bottom: 8%;
        left: -10%;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-step::after {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .whatsapp-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-features {
        grid-template-columns: 1fr;
    }

    .whatsapp-cta-box {
        padding: 35px 25px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-price {
        width: 100%;
        text-align: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }
}
