/* ==========================================
   Rakit Studio - Main Stylesheet
   Modern, Minimal, Professional
   ========================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #16A34A;
    --primary-light: #22C55E;
    --primary-dark: #14532D;
    --text: #111827;
    --text-light: #4B5563;
    --text-lighter: #9CA3AF;
    --bg: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-dark: #1F2937;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glass: 0 4px 30px rgba(0, 0, 0, 0.05);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: clamp(50px, 7vw, 100px) 0;
    --container-padding: 0 clamp(16px, 4vw, 24px);
    
    /* Z-Index */
    --z-navbar: 1000;
    --z-backtotop: 999;
    --z-modal: 2000;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    width: 100%;
}

img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Images */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Form Elements */
input, textarea, select, button {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================
   Navbar
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-navbar);
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.2;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.nav-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* Nav Button */
.btn-nav {
    display: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    gap: 5px;
    flex-shrink: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-nav {
    display: none;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(255, 255, 255, 1) 50%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================
   Trust Section
   ========================================== */
.trust-section {
    padding: 4rem 0;
    background: var(--bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.trust-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.trust-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================
   Section Styles
   ========================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(22, 163, 74, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   Services Section
   ========================================== */
.services-section {
    padding: var(--section-padding);
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 163, 74, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.6;
}

.service-card .btn {
    width: 100%;
}

/* ==========================================
   About Section
   ========================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-text {
    max-width: 550px;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-features {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.125rem;
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

/* ==========================================
   Why Section
   ========================================== */
.why-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.why-intro .section-badge,
.why-intro .section-title,
.why-intro .section-subtitle {
    text-align: left;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 163, 74, 0.2);
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.why-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.why-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================
   Process Section
   ========================================== */
.process-section {
    padding: var(--section-padding);
    background: var(--bg);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.process-item {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    transition: all var(--transition);
}

.process-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.process-item::before {
    content: '';
    position: absolute;
    left: -2.25rem;
    top: 2.25rem;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.process-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.process-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.process-arrow {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.process-arrow i {
    color: var(--primary);
    font-size: 1.25rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ==========================================
   Portfolio Section
   ========================================== */
.portfolio-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    background: var(--gradient-primary);
    border-color: var(--primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, 0.9);
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.25rem;
    transform: translateY(20px);
    transition: transform var(--transition);
}

.portfolio-item:hover .portfolio-link {
    transform: translateY(0);
}

.portfolio-info {
    padding: 1.25rem;
}

.portfolio-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: var(--primary);
    background: rgba(22, 163, 74, 0.1);
    border-radius: var(--radius-full);
    font-weight: 500;
}

/* ==========================================
   Testimonial Section
   ========================================== */
.testimonial-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2316A34A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.testimonial-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-carousel {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0 1rem;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    padding: 0.5rem 0.25rem;
}

.testimonial-card {
    flex: 0 0 calc((100% - 2 * 1.5rem) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(22, 163, 74, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
    color: #FFD700;
    font-size: 1.125rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.testimonial-rating i {
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.15);
    color: #FFC107;
}

.testimonial-text {
    font-size: 0.975rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
    position: relative;
    padding-left: 1.5rem;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2.5rem;
    color: var(--primary-light);
    opacity: 0.35;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: auto;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
    background: var(--bg-secondary);
    transition: all var(--transition);
    flex-shrink: 0;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.testimonial-card:hover .author-info h4 {
    color: var(--primary);
}

.author-info span {
    font-size: 0.825rem;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonial-prev.disabled,
.testimonial-next.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonial-dot:hover {
    background: rgba(22, 163, 74, 0.4);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 28px;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-featured {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.pricing-featured::before {
    display: none;
}

.pricing-featured .pricing-name,
.pricing-featured .pricing-price,
.pricing-featured .pricing-description {
    color: white;
}

.pricing-featured .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-featured .pricing-features li::before {
    background: rgba(255, 255, 255, 0.5);
}

.pricing-featured .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.pricing-featured .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) scale(1.02);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.pricing-featured .pricing-badge {
    background: rgba(0, 0, 0, 0.2);
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9rem;
}

.pricing-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-features li i {
    color: white;
    font-size: 0.75rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note i {
    color: var(--primary);
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.faq-intro .section-badge,
.faq-intro .section-title,
.faq-intro .section-subtitle {
    text-align: left;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    background: var(--bg-secondary);
    transition: all var(--transition);
    text-align: left;
}

.faq-question:hover {
    background: rgba(22, 163, 74, 0.05);
}

.faq-text {
    flex: 1;
}

.faq-icon {
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition);
    padding: 0 1.25rem;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 1.25rem;
    max-height: 500px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 163, 74, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-text p,
.contact-text a {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-text a {
    color: var(--primary);
    transition: color var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary-light);
}

.contact-social {
    margin-top: 1rem;
}

.contact-social h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    color: var(--text);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.social-links a i {
    font-size: 1.25rem;
}

/* Contact Form */
.contact-form-container {
    padding: 2.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: var(--text);
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.form-actions {
    margin-top: 0.5rem;
}

.btn-submit {
    position: relative;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline-flex;
}

.form-message {
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background: rgba(22, 163, 74, 0.1);
    color: var(--primary);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    display: block;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-dark);
    color: white;
}

.footer .logo-text .logo-name {
    color: white;
}

.footer .logo-text .logo-tagline {
    color: var(--primary-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-links a i {
    width: 18px;
    font-size: 0.85rem;
    color: var(--primary-light);
}

.footer-social {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.footer-social a i {
    font-size: 1.125rem;
}

.contact-title {
    margin-top: 2rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link:hover {
    background: var(--primary);
    color: white;
}

.contact-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: var(--z-backtotop);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 1.85rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

/* ==========================================
   Comprehensive Mobile & Multi-Device Responsive
   ========================================== */

/* Large Screens & Ultra-wide (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1240px;
    }
    
    .hero {
        padding: 9rem 0 5rem;
    }
}

/* Tablet & Smaller Laptops (1024px and down) */
@media (max-width: 1024px) {
    .hero {
        padding: 7rem 0 3.5rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
        max-width: 680px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img,
    .illustration {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .about-content,
    .faq-content,
    .why-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-text,
    .faq-intro,
    .why-intro,
    .contact-info {
        max-width: 100%;
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .about-text .section-badge,
    .about-text .section-title,
    .about-text .about-description,
    .faq-intro .section-badge,
    .faq-intro .section-title,
    .faq-intro .section-subtitle,
    .why-intro .section-badge,
    .why-intro .section-title,
    .why-intro .section-subtitle,
    .contact-info .section-badge,
    .contact-info .section-title,
    .contact-info .contact-subtitle {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .testimonial-track {
        gap: 1.25rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc((100% - 1.25rem) / 2);
    }
}

/* Tablet Navigation & Intermediate Layout (992px and down) */
@media (max-width: 992px) {
    .navbar .container {
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.75rem 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        font-size: 1.05rem;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .btn-nav {
        display: inline-flex;
        align-self: center;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (768px and down) */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-image img,
    .illustration {
        max-width: 95%;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1.25rem 1rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .services-grid,
    .why-grid,
    .portfolio-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        max-width: 440px;
        margin: 0 auto;
        width: 100%;
    }
    
    .process-timeline {
        padding-left: 2rem;
    }
    
    .process-timeline::before {
        left: 0.75rem;
    }
    
    .process-item {
        padding: 1.25rem 1.5rem;
    }
    
    .process-item::before {
        left: -1.75rem;
        top: 2rem;
        width: 10px;
        height: 10px;
    }
    
    .process-number {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .testimonial-track {
        padding: 0.25rem 0;
        gap: 1rem;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 0;
        padding: 1.5rem;
    }
    
    .testimonial-controls {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 44px;
        height: 44px;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-links a,
    .footer-social a,
    .footer-contact .contact-link {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        bottom: 1.25rem;
        left: 1.25rem;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

/* Small Mobile Devices (576px and down) */
@media (max-width: 576px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .about-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .about-feature {
        width: 100%;
        justify-content: center;
    }
    
    .portfolio-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.825rem;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
}

/* Ultra Small Devices (380px and down) */
@media (max-width: 380px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-name {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   Animations
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   Accessibility
   ========================================== */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    z-index: 10000;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 1rem;
}

/* ==========================================
   Print Styles
   ========================================== */
@media print {
    .navbar,
    .back-to-top,
    .scroll-indicator,
    .testimonial-carousel,
    .contact-form-container,
    .cta-section,
    .footer {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
    }
}
