/* =============================================
   MUKTI LASER CUTTING - PREMIUM GREEN & WHITE THEME
   Clean, Professional, Modern Design
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables & Design System */
:root {
    /* Colors - Light/Clean Theme (Default) */
    --bg-primary: #ffffff;
    --bg-secondary: #fefefe;
    --bg-tertiary: #f5f7f9;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);

    /* Theme Colors (Soft Bright Blue) */
    --green-50: #eff6ff;
    --green-100: #dbeafe;
    --green-200: #bfdbfe;
    --green-300: #93c5fd;
    --green-400: #60a5fa;
    --green-500: #3b82f6;
    --green-600: #2563eb;
    --green-700: #1d4ed8;
    --green-800: #1e40af;
    --green-900: #1e3a8a;

    /* Brand Colors (Cohesive Single Color) */
    --accent-primary: #3b82f6;
    /* Soft Blue */
    --accent-secondary: #60a5fa;
    /* Lighter Soft Blue */
    --accent-tertiary: #93c5fd;
    /* Even Lighter Blue */
    --accent-dark: #2563eb;
    --accent-light: #eff6ff;

    /* Gradients (Subtle Monotone) */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-subtle: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    --gradient-dark: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-glow: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
    --gradient-text: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-hero: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);

    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-tertiary: #64748b;
    --text-muted: #94a3b8;
    --text-white: #ffffff;

    /* Borders */
    --border-color: rgba(59, 130, 246, 0.15);
    --border-light: rgba(0, 0, 0, 0.05);
    --border-glow: rgba(59, 130, 246, 0.3);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
    --shadow-green: 0 8px 24px rgba(59, 130, 246, 0.25);

    /* Spacing */
    --section-padding: 90px 0;
    --container-padding: 0 24px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    /* Slate 900 */
    --bg-secondary: #1e293b;
    /* Slate 800 */
    --bg-tertiary: #334155;
    /* Slate 700 */
    --bg-card: rgba(30, 41, 59, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --text-primary: #f8fafc;
    --text-secondary: rgba(248, 250, 252, 0.75);
    --text-tertiary: rgba(248, 250, 252, 0.5);
    --text-muted: rgba(248, 250, 252, 0.35);
    --border-color: rgba(59, 130, 246, 0.15);
    /* Soft Blue */
    --border-light: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: white;
}

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

[data-theme="dark"] #preloader {
    background: #0a1a12;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.laser-beam {
    width: 50px;
    height: 50px;
    border: 3px solid var(--green-100);
    border-top-color: var(--accent-primary);
    border-right-color: var(--accent-secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loader span {
    color: var(--accent-primary);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border-light);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(10, 26, 18, 0.95);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-img {
    height: 190px;
    width: auto;
    object-fit: contain;
    margin: -55px -15px;
    transition: var(--transition-base);
}

/* Logo on dark hero background → white */
.navbar:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

.logo .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo .brand-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-primary);
    letter-spacing: -0.5px;
}

.logo .brand-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Hero state - white logo text */
.navbar:not(.scrolled) .logo .brand-name {
    color: #ffffff;
}

.navbar:not(.scrolled) .logo .brand-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.2px;
}

.navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 1px;
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-primary);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar:not(.scrolled) .nav-link::after {
    background: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-base);
}

.navbar:not(.scrolled) .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-toggle:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: rotate(15deg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
    border-radius: 1px;
}

.navbar:not(.scrolled) .nav-toggle span {
    background: white;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    white-space: nowrap;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 122, 62, 0.35);
}

.navbar:not(.scrolled) .btn-primary {
    background: white;
    color: var(--accent-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.navbar:not(.scrolled) .btn-primary:hover {
    background: var(--green-50);
    transform: translateY(-2px);
}

.btn-glow {
    background: var(--accent-primary);
    color: white;
    box-shadow: var(--shadow-green);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.btn-glow:hover::before {
    transform: translateX(100%);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13, 122, 62, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--green-50);
}

.btn-white {
    background: white;
    color: var(--accent-primary);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: var(--gradient-hero);
    background-image: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4)), url('assets/images/backgrounds/atas2.png');
    background-size: cover;
    background-position: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-tertiary);
    bottom: -150px;
    left: -100px;
    animation-delay: 3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #93c5fd;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(20px, -20px);
    }

    66% {
        transform: translate(-15px, 15px);
    }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Decorative shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.hero-badge i {
    color: #fbbf24;
    font-size: 14px;
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.3));
}

/* For non-hero sections */
.services .gradient-text,
.portfolio .gradient-text,
.process .gradient-text,
.testimonials .gradient-text,
.contact .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-cta .btn-glow {
    background: white;
    color: var(--accent-primary);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta .btn-glow:hover {
    background: var(--green-50);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-glow::before {
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
}

.hero-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
}

.hero-cta .btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: white;
    -webkit-text-fill-color: white;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.stat-plus {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-tertiary);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    z-index: 1;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: floatCard 6s ease-in-out infinite;
    color: white;
}

.floating-card i {
    font-size: 22px;
    color: var(--accent-tertiary);
    -webkit-text-fill-color: var(--accent-tertiary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.floating-card span {
    font-weight: 600;
    font-size: 13px;
    color: white;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 1px;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 11px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 7px;
    background: var(--accent-tertiary);
    border-radius: 2px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.4;
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 56px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

[data-theme="dark"] .section-badge {
    background: rgba(13, 122, 62, 0.1);
    border-color: rgba(13, 122, 62, 0.2);
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-200), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: rgba(13, 122, 62, 0.2);
    background: linear-gradient(135deg, rgba(13, 122, 62, 0.03), rgba(16, 185, 129, 0.02));
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: var(--accent-primary);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon .icon-bg {
    position: absolute;
    inset: 0;
    background: var(--green-50);
    border-radius: var(--radius-md);
}

[data-theme="dark"] .service-icon .icon-bg {
    background: rgba(13, 122, 62, 0.1);
}

.service-icon i {
    font-size: 24px;
    color: var(--accent-primary);
    position: relative;
    -webkit-text-fill-color: var(--accent-primary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.service-card>p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.service-features li i {
    color: var(--accent-primary);
    font-size: 11px;
}

/* Service Card with Background Image */
.service-card.with-bg {
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    border: none;
    z-index: 1;
}

.service-card.with-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 78, 59, 0.7), rgba(6, 78, 59, 0.9));
    z-index: -1;
    transition: var(--transition-base);
}

.service-card.with-bg:hover::after {
    background: linear-gradient(to bottom, rgba(13, 122, 62, 0.8), rgba(6, 78, 59, 0.95));
}

.service-card.with-bg .service-content-wrapper {
    position: relative;
    z-index: 2;
}

.service-card.with-bg h3,
.service-card.with-bg p,
.service-card.with-bg .service-features li,
.service-card.with-bg .service-link {
    color: white;
}

.service-card.with-bg .service-features li i {
    color: var(--green-300);
}

.service-card.with-bg .icon-bg {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.service-card.with-bg .service-icon i {
    color: white;
    -webkit-text-fill-color: white;
}

.service-card.with-bg .service-link {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.service-card.with-bg .service-link:hover {
    background: white;
    color: var(--accent-primary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 14px;
}

.service-link:hover {
    gap: 10px;
}

/* =============================================
   PORTFOLIO SECTION
   ============================================= */
.portfolio {
    padding: var(--section-padding);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    box-shadow: var(--shadow-green);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 260px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.95) 0%, rgba(6, 78, 59, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay,
.gallery-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img,
.gallery-item:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.portfolio-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.portfolio-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: translateY(-8px);
    transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-zoom,
.gallery-item:hover .portfolio-zoom {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-200), transparent);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--green-100);
    transform: translateX(-50%);
}

[data-theme="dark"] .timeline-line {
    background: rgba(13, 122, 62, 0.2);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: white;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--bg-secondary), var(--shadow-green);
}

.step-content {
    width: calc(50% - 50px);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: var(--transition-base);
}

.step-content:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.step-icon {
    width: 44px;
    height: 44px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

[data-theme="dark"] .step-icon {
    background: rgba(13, 122, 62, 0.1);
}

.step-icon i {
    font-size: 20px;
    color: var(--accent-primary);
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features {
    padding: 80px 0;
    background: var(--gradient-hero);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
    transition: var(--transition-base);
    color: white;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon i {
    font-size: 22px;
    color: white;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.feature-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    padding: var(--section-padding);
}

.testimonials-slider {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 36px;
    display: none;
    opacity: 0;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    text-align: center;
    margin-bottom: 24px;
}

.quote-icon {
    margin-bottom: 16px;
}

.quote-icon i {
    font-size: 36px;
    color: var(--accent-primary);
    -webkit-text-fill-color: var(--accent-primary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.testimonial-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 16px;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.rating i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green-200);
}

.author-info h4 {
    font-size: 15px;
    font-weight: 700;
}

.author-info span {
    font-size: 12px;
    color: var(--text-tertiary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-100);
    transition: var(--transition-base);
    cursor: pointer;
}

[data-theme="dark"] .dot {
    background: rgba(13, 122, 62, 0.2);
}

.dot.active {
    background: var(--accent-primary);
    width: 28px;
    border-radius: 5px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-orb.orb-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.cta-orb.orb-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-200), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 15px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[data-theme="dark"] .contact-icon {
    background: rgba(13, 122, 62, 0.1);
}

.contact-icon i {
    font-size: 18px;
    color: var(--accent-primary);
}

.contact-text h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.contact-text p {
    font-size: 13px;
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(13, 122, 62, 0.08);
    background: var(--bg-primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230d7a3e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--accent-dark);
    color: white;
}

.footer-top {
    padding: 64px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo .brand-name {
    color: white;
}

.footer-brand .logo .brand-tagline {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand>p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-tertiary);
    padding-left: 4px;
}

.footer-newsletter h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.footer-newsletter>p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: white;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-secondary);
}

.newsletter-form button {
    padding: 10px 16px;
    background: var(--accent-secondary);
    border-radius: var(--radius-md);
    color: white;
    font-size: 14px;
    transition: var(--transition-base);
}

.newsletter-form button:hover {
    background: var(--accent-tertiary);
    transform: scale(1.05);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
    color: var(--accent-tertiary);
}

/* =============================================
   BACK TO TOP & WHATSAPP FLOAT
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    width: 46px;
    height: 46px;
    background: var(--accent-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: var(--shadow-green);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 122, 62, 0.4);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.pulse-ring {
    position: absolute;
    inset: -5px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Image Modal / Lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    transition: var(--transition-base);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    animation: zoomModal 0.3s ease-out;
}

@keyframes zoomModal {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--accent-tertiary);
    transform: rotate(90deg);
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
        padding: 0 16px;
    }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1200px) {
    .hero-visual {
        display: none;
    }

    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 90px 36px 36px;
        gap: 20px;
        transition: var(--transition-base);
        box-shadow: var(--shadow-xl);
        border-left: 1px solid var(--border-light);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .nav-menu .nav-link {
        color: var(--text-primary) !important;
        font-size: 16px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center;
    }

    .step-number {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 16px;
    }

    .step-content {
        width: 100%;
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 120px;
        margin: -35px -8px;
    }

    .hero {
        padding: 100px 16px 56px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
    }

    .back-to-top {
        right: 80px;
        bottom: 20px;
        width: 44px;
        height: 44px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}