/* ========================================
   WEBINO TECHNOLOGIES - Friendly Professional Theme
   Mobile-First, All Device Responsive
   ======================================== */

:root {
    /* Friendly Professional Palette (Light Mode Default) */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-accent: #FFF5F0;
    --bg-card: #FFFFFF;
    --bg-input: #F3F4F6;
    --border-color: #E5E7EB;

    /* Text Colors */
    --text-dark: #1A1A2E;
    --text-body: #4A4A5A;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;

    /* Accent Colors */
    --accent-primary: #FF6B35;
    --accent-primary-hover: #E85A2A;
    --accent-secondary: #00B4D8;
    --accent-secondary-hover: #0096B4;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #1DA851;

    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #FF8F5A 100%);
    --gradient-trust: linear-gradient(135deg, #00B4D8 0%, #0096B4 100%);
    --gradient-hero: linear-gradient(135deg, #FFF5F0 0%, #E8F4F8 100%);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 8px 25px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables */
body.dark-mode {
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-accent: #1E293B;
    --bg-card: #1E293B;
    --bg-input: #334155;
    --border-color: #334155;

    --text-dark: #F1F5F9;
    --text-body: #CBD5E1;
    --text-muted: #94A3B8;
    --text-light: #64748B;

    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: 1.75rem;
}

/* Responsive Grid for Services and Packages */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.15rem;
}

h4 {
    font-size: 1rem;
}

p {
    color: var(--text-body);
    margin-bottom: var(--space-sm);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent overflow */
section,
header,
footer,
main {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

main {
    width: 100%;
}

ul {
    list-style: none;
}

/* ========================================
   LAYOUT & CONTAINER
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    overflow-x: hidden;
}

.section-padding {
    padding: var(--space-lg) 0;
    width: 100%;
}

.text-center {
    text-align: center;
}

/* ========================================
   HEADER - Mobile First
   ======================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    z-index: 1000;
    background: var(--bg-primary);
    /* Changed for better dark mode support */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 6px 16px;
    width: 100%;
}

body.dark-mode header {
    background: rgba(15, 23, 42, 0.9);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.logo img {
    height: 40px;
    width: auto;
}

/* In dark mode, you might want to invert the logo or use a white version. 
   Assuming the logo is dark text/graphics on transparent.
   A simple filter can work if it's black text. */
body.dark-mode .logo img {
    filter: brightness(0) invert(1);
}

.logo span {
    display: none;
}

/* Desktop Nav - Hidden on Mobile */
.desktop-nav {
    display: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:active {
    background: var(--bg-secondary);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 56px;
    left: 16px;
    right: 16px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md);
    display: none;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 1001;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-nav a:active {
    background: var(--bg-accent);
}

.mobile-nav .btn-mobile {
    background: var(--accent-primary);
    color: white;
    text-align: center;
    color: white;
    text-align: center;
    margin-top: var(--space-xs);
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    display: none !important;
    /* Forces dark mode toggle to be hidden */
}

.theme-toggle:hover {
    background: var(--bg-secondary);
    color: var(--accent-primary);
}

/* ========================================
   BUTTONS - Touch Friendly (min 44px)
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    min-height: 48px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    -webkit-tap-highlight-color: transparent;
    text-align: center;
    max-width: 100%;
    white-space: nowrap;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background: var(--gradient-warm);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover,
.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-dark);
    border: 1px solid #E5E7EB;
}

.btn-secondary:hover,
.btn-secondary:active {
    background: #EBEDEF;
    border-color: #D1D5DB;
}

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

.btn-outline:hover,
.btn-outline:active {
    background: var(--accent-primary);
    color: white;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover,
.btn-whatsapp:active {
    background: var(--whatsapp-hover);
}

.btn.full-width {
    width: 100%;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ========================================
   HERO SECTION - Mobile First
   ======================================== */

#hero {
    padding-top: 70px;
    padding-bottom: var(--space-lg);
    background: var(--gradient-hero);
    min-height: auto;
    width: 100%;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hero-content {
    text-align: center;
    order: 2;
}

.badge {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--accent-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-sm);
}

#hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#hero p {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hero-btns .btn {
    width: 100%;
}

.hero-image {
    order: 1;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
}

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

.floating-card {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background: var(--bg-primary);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ========================================
   SECTION TITLES
   ======================================== */

.section-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: var(--space-xs);
    padding: 0 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    padding: 0 8px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

#about {
    background: var(--bg-primary);
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
}

.about-content {
    text-align: center;
}

.about-content .section-title {
    text-align: center;
}

.about-content p {
    font-size: 1rem;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

/* ========================================
   WHO IS THIS FOR SECTION
   ======================================== */

#who-for {
    background: var(--bg-secondary);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: var(--space-md);
    width: 100%;
}

.target-card {
    background: var(--bg-primary);
    padding: 12px 8px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
}

.target-card:active {
    transform: scale(0.98);
}

.t-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    background: var(--bg-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.target-card h3 {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.target-note {
    margin-top: var(--space-lg);
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-primary);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

#services {
    background: var(--bg-primary);
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: var(--space-md);
    width: 100%;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.service-card:active {
    border-color: var(--accent-primary);
}

.icon-box {
    width: 56px;
    height: 56px;
    background: var(--bg-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.services-result {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-primary);
    padding: var(--space-sm);
    background: var(--bg-accent);
    border-radius: var(--radius-md);
}

/* ========================================
   MOBILE SHOWCASE SECTION
   ======================================== */

#mobile-showcase {
    background: var(--bg-secondary);
    overflow: hidden;
}

.mobile-badge {
    display: inline-block;
    background: var(--accent-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.showcase-image-wrapper {
    margin: var(--space-md) 0;
    max-width: 100%;
    overflow: hidden;
}

.showcase-image-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    max-width: 100%;
    width: 100%;
    height: auto;
}

.showcase-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-md);
}

/* NEW: Interactive Phone Slider Styles */
/* Horizontal Scroll Slider */
.phone-slider-container {
    padding: var(--space-md) 0;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 30px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.phone-slider-container::-webkit-scrollbar {
    display: none;
}

.phone-card {
    display: block;
    width: 320px;
    flex-shrink: 0;
    scroll-snap-align: center;
    height: auto;
    aspect-ratio: auto;
    background: transparent;
    position: relative;
    transition: transform 0.3s ease;
}

.phone-card:hover {
    transform: translateY(-5px);
}

body.dark-mode .phone-card {
    border-color: transparent;
}

.phone-screen {
    width: 100%;
    height: auto;
    /* Content inside phone is usually light unless dark mode site */
    display: flex;
    flex-direction: column;
}

.phone-header {
    background: var(--accent-primary);
    padding: 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

/* Full Image Screen Mode */
.phone-screen.full-img {
    padding: 0;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

.phone-screen.full-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.phone-hero {
    height: 140px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-hero i {
    font-size: 3rem;
    color: #cbd5e1;
}

.phone-body {
    padding: 15px;
    flex: 1;
}

.phone-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 8px;
    width: 100%;
}

.phone-line.short {
    width: 60%;
}

.phone-line.medium {
    width: 80%;
}

.phone-btn {
    margin-top: 15px;
    background: var(--accent-secondary);
    color: white;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Full Image Screen Mode */
.phone-screen.full-img {
    padding: 10px;
    display: block;
    overflow: hidden;
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* Match parent radius */
}

.phone-screen.full-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 24px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    /* Define edges */
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
    /* Stronger depth */
}



/* Specific Phone Styles */
.phone-card.gym .phone-header {
    background: #E11D48;
}

/* Rose */
.phone-card.gym .phone-btn {
    background: #E11D48;
}

.phone-card.salon .phone-header {
    background: #9333EA;
}

/* Purple */
.phone-card.salon .phone-btn {
    background: #9333EA;
}

.phone-card.cafe .phone-header {
    background: #D97706;
}

/* Amber */
.phone-card.cafe .phone-btn {
    background: #D97706;
}

/* ========================================
   HOW IT WORKS / PROCESS SECTION
   ======================================== */

#how-it-works {
    background: var(--bg-primary);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.process-step {
    background: var(--bg-secondary);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--gradient-warm);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto var(--space-sm);
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-xs);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.process-note {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent-secondary);
}

/* ========================================
   WHAT YOU GET SECTION
   ======================================== */

#what-you-get {
    background: var(--text-dark);
    color: white;
}

#what-you-get .section-title {
    color: white;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 500;
}

.benefit-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

/* ========================================
   CUSTOMIZATION SECTION
   ======================================== */

#customization {
    background: var(--bg-accent);
}

.customization-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-description {
    font-size: 1rem;
    text-align: center;
    margin-bottom: var(--space-md);
}

.custom-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.custom-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-primary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.custom-feature-item i {
    color: var(--whatsapp-green);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ========================================
   PACKAGES SECTION
   ======================================== */

#packages {
    background: var(--bg-primary);
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: var(--space-md);
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition-normal);
}

.package-card h3 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}

.package-tagline {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.package-price {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: var(--space-xs);
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    margin-right: 8px;
}

.launch-badge {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: var(--whatsapp-green);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin: 0 auto var(--space-sm);
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card .launch-badge {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.package-card .divider {
    height: 1px;
    background: #E5E7EB;
    margin: var(--space-sm) 0 var(--space-md);
}

.package-best {
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 600;
    text-align: center;
    margin: var(--space-sm) 0;
    padding: 8px;
    background: var(--bg-accent);
    border-radius: var(--radius-sm);
}

.package-card ul {
    margin-bottom: var(--space-md);
}

.package-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: var(--space-xs) 0;
    font-size: 0.95rem;
    color: var(--text-body);
}

.package-card ul li i {
    color: var(--whatsapp-green);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.extra-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.package-card.featured {
    border: 2px solid var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.pop-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-warm);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.package-notes {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.package-notes p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin: 0;
}

.package-notes i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-line {
    color: var(--accent-primary);
    font-weight: 600;
}

.trust-line i {
    color: var(--accent-primary);
}

.domain-note {
    color: var(--text-muted);
}

.domain-note i {
    color: var(--accent-secondary);
}

.payment-note {
    color: var(--whatsapp-green);
    font-weight: 500;
}

.payment-note i {
    color: var(--whatsapp-green);
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-note a {
    color: var(--accent-primary);
    font-weight: 600;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

#why-us {
    background: var(--bg-secondary);
}

.why-us-grid {
    max-width: 600px;
    margin: 0 auto;
}

.why-text {
    text-align: center;
}

.why-text .section-title {
    text-align: center;
}

.check-list {
    text-align: left;
    margin-top: var(--space-md);
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.check-list li i {
    color: var(--accent-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================
   FAQ SECTION
   ======================================== */

#faq {
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: var(--space-sm);
}

.faq-question i {
    color: var(--accent-primary);
    font-size: 1.5rem;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

#cta {
    background: var(--gradient-warm);
    padding: var(--space-xl) 16px;
    text-align: center;
    width: 100%;
}

#cta h2 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

#cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    padding: 0 8px;
}

#cta .btn {
    background: white;
    color: var(--accent-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#cta .btn:hover,
#cta .btn:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ========================================
   QUICK INQUIRY FORM SECTION
   ======================================== */
.inquiry-form-section {
    background: var(--bg-secondary);
    padding: var(--space-lg) 0;
}

.form-wrapper {
    background: var(--bg-card);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-md);
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-input);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--text-dark);
    color: white;
    padding-top: var(--space-xl);
    width: 100%;
    overflow-x: hidden;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
}

.footer-brand .logo {
    color: white;
    margin-bottom: var(--space-sm);
}

.footer-brand .logo span {
    display: inline;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-contact p,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding: var(--space-xs) 0;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-links a:active {
    background: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
    margin-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* ========================================
   STICKY WHATSAPP BUTTON
   ======================================== */

.sticky-whatsapp {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background: var(--whatsapp-green);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-normal);
}

.sticky-whatsapp span {
    display: none;
}

.sticky-whatsapp:active {
    transform: scale(0.95);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:active {
    background: var(--bg-secondary);
}

/* ========================================
   SKIP LINK (Accessibility)
   ======================================== */

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: var(--transition-fast);
}

.skip-link:focus {
    top: 10px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   TABLET BREAKPOINT (min-width: 600px)
   ======================================== */

@media (min-width: 600px) {
    .container {
        padding: 0 24px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-padding {
        padding: var(--space-2xl) 0;
    }

    .logo img {
        height: 45px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: row;
        justify-content: center;
    }

    .hero-btns .btn {
        width: auto;
    }

    .target-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .custom-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .custom-feature-item {
        width: auto;
    }

    .sticky-whatsapp {
        width: auto;
        padding: 14px 24px;
        border-radius: var(--radius-full);
        font-size: 1rem;
    }

    .sticky-whatsapp span {
        display: inline;
    }

    .sticky-whatsapp i {
        font-size: 1.3rem;
    }
}

/* ========================================
   DESKTOP BREAKPOINT (min-width: 900px)
   ======================================== */

@media (min-width: 900px) {
    .container {
        padding: 0 var(--space-lg);
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    /* Header */
    header {
        padding: 8px var(--space-lg);
    }

    .logo img {
        height: 50px;
    }

    .logo span {
        display: inline;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
    }

    /* Centering the phone slider on desktop */
    .phone-slider-container {
        justify-content: center;
        overflow: hidden;
        /* Disable scroll on desktop if items fit, or keep for effect */
        margin: 0;
        gap: 40px;
    }

    .phone-card {
        margin: 0;
    }

    .desktop-nav a {
        color: var(--text-body);
        font-weight: 500;
        padding: 8px 0;
    }

    .desktop-nav a:hover {
        color: var(--accent-primary);
    }

    .desktop-nav .btn {
        padding: 10px 20px;
        min-height: auto;
    }

    .mobile-toggle {
        display: none;
    }

    .mobile-nav {
        display: none;
    }

    /* Hero */
    #hero {
        padding-top: 90px;
        padding-bottom: var(--space-2xl);
        min-height: 90vh;
        display: flex;
        align-items: center;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
        text-align: left;
        order: 1;
    }

    #hero h1 {
        font-size: 3.2rem;
    }

    .hero-btns {
        justify-content: flex-start;
    }

    .hero-image {
        flex: 1;
        order: 2;
    }

    .floating-card {
        display: flex;
        bottom: 20px;
        right: 20px;
    }

    /* About */
    .about-container {
        flex-direction: row;
        align-items: center;
    }

    .about-content {
        flex: 1;
        text-align: left;
    }

    .about-content .section-title {
        text-align: left;
    }

    .about-image {
        flex: 1;
    }

    .about-image img {
        max-width: 100%;
    }

    /* Grids */
    .target-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    /* Cards hover effects */
    .service-card:hover {
        border-color: var(--accent-primary);
        transform: translateY(-4px);
        box-shadow: var(--shadow-card-hover);
    }

    .target-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-card-hover);
    }

    .package-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-card-hover);
    }

    /* Footer */
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        flex: 1.5;
    }

    .footer-links,
    .footer-contact {
        flex: 1;
    }

    /* CTA */
    #cta {
        border-radius: var(--radius-xl);
        margin: var(--space-lg) auto;
        max-width: calc(100% - 64px);
        padding: var(--space-2xl);
    }

    #cta h2 {
        font-size: 2rem;
    }

    /* Social links hover */
    .social-links a:hover {
        background: var(--accent-primary);
        transform: translateY(-2px);
    }
}

/* ========================================
   LARGE DESKTOP (min-width: 1200px)
   ======================================== */

@media (min-width: 1200px) {
    h1 {
        font-size: 3.5rem;
    }

    #hero h1 {
        font-size: 3.5rem;
    }

    .hero-container {
        gap: var(--space-2xl);
    }
}

/* ========================================
   UTILITY: SAFE AREA FOR NOTCHED PHONES
   ======================================== */

@supports (padding: max(0px)) {
    .sticky-whatsapp {
        bottom: max(20px, env(safe-area-inset-bottom));
        right: max(20px, env(safe-area-inset-right));
    }

    .back-to-top {
        bottom: max(90px, calc(env(safe-area-inset-bottom) + 70px));
        right: max(20px, env(safe-area-inset-right));
    }

    footer {
        padding-bottom: max(var(--space-md), env(safe-area-inset-bottom));
    }
}

/* ========================================
   REDUCED MOTION (Accessibility)
   ======================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {

    header,
    .sticky-whatsapp,
    .back-to-top,
    .mobile-nav {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .section-padding {
        padding: 1rem 0;
    }
}

/* ========================================
   CLIENTS SECTION
   ======================================== */
.client-slider-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 4px 30px 4px;
    /* Bottom padding for scrollbar */
    margin-top: 30px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for cleaner look but keep functionality */
    scrollbar-width: none;
}

.client-slider-container::-webkit-scrollbar {
    display: none;
}

.client-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    /* Horizontal Scroll Properties */
    flex-shrink: 0;
    width: 280px;
    scroll-snap-align: center;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.client-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--accent-primary);
    font-size: 1.8rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.client-card:hover .client-icon {
    background: var(--gradient-warm);
    color: white;
}

.client-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 700;
}

.client-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.client-card .view-link {
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.client-card:hover .view-link {
    gap: 8px;
}