/**
 * JiyaneDesign - Design System Variables
 * Premium color palette, typography, spacing, and animation tokens
 */

:root {
  /* ===== BRAND COLORS ===== */
  --color-primary: #d4af37;
  /* Premium Gold */
  --color-primary-light: #e6c966;
  --color-primary-dark: #b8951f;

  --color-secondary: #1a1a2e;
  /* Deep Navy */
  --color-secondary-light: #2d2d44;
  --color-secondary-dark: #0d0d17;

  --color-dark: #0f0f1e;
  /* Charcoal */
  --color-darker: #050509;

  --color-light: #f5f5f5;
  /* Off-white */
  --color-lighter: #fafafa;
  --color-white: #ffffff;

  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-400: #ced4da;
  --color-gray-500: #adb5bd;
  --color-gray-600: #6c757d;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;
  --color-gray-900: #212529;

  /* ===== SEMANTIC COLORS ===== */
  --color-success: #28a745;
  --color-error: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;

  /* ===== TYPOGRAPHY ===== */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Font Sizes - Modular Scale (1.25 - Major Third) */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.563rem;
  /* 25px */
  --text-3xl: 1.953rem;
  /* 31px */
  --text-4xl: 2.441rem;
  /* 39px */
  --text-5xl: 3.052rem;
  /* 49px */
  --text-6xl: 3.815rem;
  /* 61px */

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;
  --leading-loose: 2;

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-black: 900;

  /* ===== SPACING SCALE (8px base) ===== */
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */
  --space-24: 6rem;
  /* 96px */
  --space-32: 8rem;
  /* 128px */

  /* ===== LAYOUT ===== */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;
  --container-padding: var(--space-6);

  /* ===== BORDER RADIUS ===== */
  --radius-sm: 0.25rem;
  /* 4px */
  --radius-base: 0.5rem;
  /* 8px */
  --radius-lg: 0.75rem;
  /* 12px */
  --radius-xl: 1rem;
  /* 16px */
  --radius-2xl: 1.5rem;
  /* 24px */
  --radius-full: 9999px;

  /* ===== SHADOWS ===== */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 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-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.3);

  /* ===== TRANSITIONS ===== */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slower: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Easing functions */
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* ===== Z-INDEX SCALE ===== */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;

  /* ===== BREAKPOINTS (for JS) ===== */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
  /* ===== SEMANTIC TOKENS ===== */
  --bg-body: var(--color-white);
  --bg-surface: var(--color-white);
  --bg-surface-alt: var(--color-light);
  /* Section backgrounds */
  --bg-footer: var(--color-secondary);

  --text-body: var(--color-gray-900);
  --text-muted: var(--color-gray-600);
  --text-heading: var(--color-secondary);
  --text-on-dark: var(--color-white);
  /* Text on dark backgrounds (footer, hero buttons) */

  --border-color: var(--color-gray-300);
  --card-shadow: var(--shadow-base);
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-body: var(--color-dark);
  --bg-surface: var(--color-secondary-light);
  --bg-surface-alt: var(--color-secondary);
  --bg-footer: var(--color-darker);

  --text-body: var(--color-gray-300);
  --text-muted: var(--color-gray-500);
  --text-heading: var(--color-white);
  --text-on-dark: var(--color-gray-300);

  --border-color: var(--color-secondary-light);
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);

  /* Update primitives for dark mode if needed for direct usage, 
     but semantic usage is preferred */
}/**
 * JiyaneDesign - Base Styles & Reset
 * Modern CSS reset, typography system, and foundational styles
 */

/* ===== MODERN CSS RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--text-body);
    background-color: var(--bg-body);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-accent);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--text-heading);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
}

h4 {
    font-size: clamp(var(--text-xl), 2vw, var(--text-3xl));
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-4);
    max-width: 65ch;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--color-primary-dark);
}

a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

strong,
b {
    font-weight: var(--font-semibold);
}

em,
i {
    font-style: italic;
}

small {
    font-size: var(--text-sm);
}

ul,
ol {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
}

li {
    margin-bottom: var(--space-2);
}

/* ===== MEDIA ===== */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

img {
    font-style: italic;
    /* Alt text styling */
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== FORM ELEMENTS ===== */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    width: 100%;
}

/* Remove default button styles */
button,
[type='button'],
[type='reset'],
[type='submit'] {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}

/* Remove spinner from number inputs */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

/* ===== UTILITY CLASSES ===== */

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-wide {
    max-width: var(--container-wide);
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* Text Alignment */
.text-left {
    text-align: left;
}

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

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

/* Text Colors */
.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-dark {
    color: var(--color-dark);
}

.text-light {
    color: var(--color-gray-600);
}

.text-white {
    color: var(--color-white);
}

/* Background Colors */
.bg-primary {
    background-color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-light {
    background-color: var(--color-light);
}

.bg-white {
    background-color: var(--color-white);
}

/* Display */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

/* Flexbox Utilities */
.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-start {
    align-items: flex-start;
}

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

.items-end {
    align-items: flex-end;
}

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

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

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

.gap-4 {
    gap: var(--space-4);
}

.gap-6 {
    gap: var(--space-6);
}

.gap-8 {
    gap: var(--space-8);
}

/* Spacing */
.mt-auto {
    margin-top: auto;
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.mb-12 {
    margin-bottom: var(--space-12);
}

.mb-16 {
    margin-bottom: var(--space-16);
}

/* Width */
.w-full {
    width: 100%;
}

.max-w-full {
    max-width: 100%;
}

/* Visibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== SECTION SPACING ===== */
section {
    padding: var(--space-20) 0;
}

@media (min-width: 768px) {
    section {
        padding: var(--space-32) 0;
    }
}

/* ===== SELECTIONS ===== */
::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

::-moz-selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ===== LOADING STATE ===== */
.loading {
    pointer-events: none;
    opacity: 0.6;
}/**
 * JiyaneDesign - Component Styles
 * Reusable UI components: buttons, cards, forms, navigation
 */

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
    min-height: 44px;
    /* Touch target size */
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Primary Button - Gold CTA */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -15px rgba(212, 175, 55, 0.5);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

/* Secondary Button - Outline */
.btn-secondary {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover:not(:disabled) {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Dark Button */
.btn-dark {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.btn-dark:hover:not(:disabled) {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
}

/* Large Button */
.btn-lg {
    padding: var(--space-5) var(--space-12);
    font-size: var(--text-lg);
    border-radius: var(--radius-xl);
}

/* Small Button */
.btn-sm {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
}

/* WhatsApp Button */
/* WhatsApp Button (Themed) */
.btn-whatsapp {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-whatsapp:hover:not(:disabled) {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ===== CARDS ===== */
.card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card .btn {
    margin-top: auto;
}

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

.card-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--text-heading);
}

.card-text {
    color: var(--text-muted);
    margin-bottom: var(--space-6);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-6);
    color: var(--color-primary);
}

/* Dark Mode Card Icon Adaptation */
/* Dark Mode Card Icon Adaptation - GOLD TRANSFORMATION */
[data-theme="dark"] .card-icon {
    /* 
       1. Invert: White bg -> Black, Black lines -> White
       2. Grayscale: Ensure neutrality
       3. Sepia/Saturate/Hue: Tint the now-white lines to Gold
    */
    filter: invert(100%) grayscale(100%) sepia(100%) saturate(600%) hue-rotate(0deg) brightness(0.9) contrast(1.2) !important;
    /* 4. Screen: Makes the Black background (from inverted white) transparent */
    mix-blend-mode: screen;
    opacity: 1;
}

/* Theme-aware Logo Switching */
.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

/* Feature Card */
.card-feature {
    text-align: center;
    padding: var(--space-10);
    border: 1px solid var(--color-gray-200);
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%);
}

.card-feature:hover {
    border-color: var(--color-primary);
    background: var(--bg-surface);
}

/* Service Card */
.card-service {
    position: relative;
    overflow: hidden;
}

.card-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
    transition: height var(--transition-slow);
}

.card-service:hover::before {
    height: 100%;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-heading);
    margin-bottom: var(--space-2);
}

.form-control {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--text-body);
    background-color: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-base);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: var(--color-gray-500);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    display: none;
    font-size: var(--text-sm);
    color: var(--color-error);
    margin-top: var(--space-2);
}

.form-control.is-invalid {
    border-color: var(--color-error);
}

.form-control.is-invalid~.form-error {
    display: block;
}

.form-success {
    padding: var(--space-4);
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: var(--radius-base);
    color: #155724;
    margin-bottom: var(--space-6);
}

/* Honeypot (spam protection) */
.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background-color: rgba(255, 255, 255, 0.85);
    /* Fallback */
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--container-padding);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    font-family: var(--font-accent);
    color: var(--text-heading);
}

.navbar-brand img {
    height: 124px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-2);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-body);
    transition: all var(--transition-base);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-link {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--color-gray-700);
    transition: color var(--transition-base);
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--color-primary);
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 124px;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: calc(100vh - 124px);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-6);
        padding: var(--space-12) var(--space-8);
        background-color: var(--bg-surface);
        box-shadow: var(--shadow-2xl);
        transition: right var(--transition-slow);
        z-index: 999;
        overflow-y: auto;
    }

    .navbar-menu.active {
        right: 0;
    }

    /* Backdrop overlay */
    .navbar-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .navbar-link::after {
        display: none;
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-subtitle {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

.section-title {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    color: var(--text-heading);
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BADGES ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ===== ICONS ===== */
.icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: var(--z-tooltip);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    background-color: var(--bg-surface);
    color: var(--text-body);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--color-primary);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.active {
    transform: translateX(0);
}

.toast-success {
    border-left-color: var(--color-success);
}

.toast-error {
    border-left-color: var(--color-error);
}

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    color: var(--color-success);
}

.toast-error .toast-icon {
    color: var(--color-error);
}

/* Glassmorphism for Navbar specific override if needed generally */
.glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .glass {
    background: rgba(15, 15, 30, 0.7);
    /* dark bg transparent */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Apply Glass to Navbar */
.navbar {
    background-color: transparent !important;
    /* Override previous solid/semi colors */
}

/* Ensure navbar background behaves with glass class */
.navbar.glass {
    /* styles applied by class */
}

/* ===== COOKIE BANNER ===== */

.cookie-banner {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: calc(100% - var(--space-6) * 2);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

[data-theme="dark"] .cookie-banner {
    background: rgba(10, 10, 10, 0.9);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 0;
}

.cookie-actions {
    display: flex;
    gap: var(--space-3);
    justify-content: flex-end;
    margin-top: var(--space-2);
}

.cookie-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
}/**
 * JiyaneDesign - Layout Styles
 * Responsive grid systems and layout utilities
 */

/* ===== GRID LAYOUTS ===== */

/* Services Grid - 3 columns on desktop */
.grid-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Features Grid - 2 columns */
.grid-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
}

@media (min-width: 768px) {
    .grid-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Process Steps Grid */
.grid-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    position: relative;
}

@media (min-width: 768px) {
    .grid-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-process {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Two Column Layout */
.layout-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 768px) {
    .layout-two-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 180px;
    /* Navbar offset */
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface-alt) 100%);
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--space-12);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    color: var(--text-body);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-primary);
    margin-bottom: var(--space-6);
}

.hero-title {
    font-size: clamp(var(--text-3xl), 8vw, var(--text-6xl));
    line-height: 1.1;
    color: var(--text-heading);
    margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-description {
        font-size: var(--text-lg);
    }
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    color: var(--text-muted);
    margin-bottom: var(--space-10);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-img-light,
.hero-img-dark {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Default state (Light Mode) */
.hero-img-light {
    display: block;
    opacity: 1;
}

.hero-img-dark {
    display: none;
    opacity: 0;
}

/* Dark Mode State */
[data-theme="dark"] .hero-img-light {
    display: none;
    opacity: 0;
}

[data-theme="dark"] .hero-img-dark {
    display: block;
    opacity: 1;
    /* Premium Glow Effect for the Logo */
    /* Premium Glow Effect for the Logo - Reduced intensity to prevent artifacts */
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
    transform: scale(1.2);
    /* Further scale up for effect */
    max-width: 100%;
    height: auto;
}

.hero-img-light {
    max-width: 100%;
    height: auto;
    transform: scale(1.15);
}


/* Dark Mode Hero Image Adaptation - REMOVED GENERIC FILTER to avoid conflict with Premium Logo */
/* The layout now relies on swapping .hero-img-light and .hero-img-dark explicitly */


/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-footer);
    color: var(--text-muted);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        align-items: start;
        /* Align all columns to the top */
    }
}

.footer-brand {
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: var(--space-4);
    /* Adjust for logo whitespace to align with other columns */
    margin-top: -40px;
}

.footer-logo img {
    height: 130px;
    /* Much larger logo */
    width: auto;
    display: block;
}

.footer-description {
    color: var(--color-gray-400);
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
    flex-wrap: nowrap;
    gap: var(--space-4);
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-base);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: all var(--transition-base);
}

.footer-social-link:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-section-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--color-gray-400);
    transition: color var(--transition-base);
}

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

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* ===== RESPONSIVE UTILITIES ===== */

/* Show/Hide on breakpoints */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

/* ===== SPACING SECTIONS ===== */
.section-light {
    background-color: var(--bg-surface-alt);
}

.section-dark {
    background-color: var(--bg-footer);
    /* Keep dark sections dark but use footer token or new one */
    color: var(--color-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--color-white);
}

.section-dark p {
    color: var(--color-gray-300);
}/**
 * JiyaneDesign - Animations
 * Subtle, functional animations with reduced motion support
 */

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */

/* Elements with reveal class start hidden */
.reveal {
    opacity: 0;
}

/* Revealed state (triggered by Intersection Observer) */
.reveal.active {
    animation: fadeInUp 0.8s var(--ease-out) forwards;
}

/* Stagger animation delays for lists */
.reveal.active:nth-child(1) {
    animation-delay: 0s;
}

.reveal.active:nth-child(2) {
    animation-delay: 0.1s;
}

.reveal.active:nth-child(3) {
    animation-delay: 0.2s;
}

.reveal.active:nth-child(4) {
    animation-delay: 0.3s;
}

.reveal.active:nth-child(5) {
    animation-delay: 0.4s;
}

.reveal.active:nth-child(6) {
    animation-delay: 0.5s;
}

/* Slide animations */
.reveal-left.active {
    animation: slideInLeft 0.8s var(--ease-out) forwards;
}

.reveal-right.active {
    animation: slideInRight 0.8s var(--ease-out) forwards;
}

.reveal-scale.active {
    animation: scaleIn 0.6s var(--ease-out) forwards;
}

/* ===== HOVER EFFECTS ===== */

/* Lift on hover */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

/* Glow effect */
.hover-glow {
    position: relative;
    transition: all var(--transition-base);
}

.hover-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: -1;
}

.hover-glow:hover::after {
    opacity: 1;
}

/* Scale on hover */
.hover-scale {
    transition: transform var(--transition-base);
}

.hover-scale:hover {
    transform: scale(1.05);
}

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

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-gray-200);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Skeleton loader */
.skeleton {
    background: linear-gradient(90deg,
            var(--color-gray-200) 0%,
            var(--color-gray-300) 50%,
            var(--color-gray-200) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-base);
}

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

.hero-content>* {
    animation: fadeInUp 0.8s var(--ease-out) backwards;
}

.hero-badge {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.hero-actions {
    animation-delay: 0.8s;
}

.hero-visual {
    animation: fadeIn 1s var(--ease-out) 0.4s backwards;
}

/* Floating animation for hero visual */
.hero-visual img,
.hero-visual svg {
    animation: float 6s ease-in-out infinite;
}

/* ===== BACKGROUND PATTERNS ===== */

/* Dot pattern */
.bg-dots {
    background-image: radial-gradient(circle, var(--color-gray-300) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Grid pattern */
.bg-grid {
    background-image:
        linear-gradient(var(--color-gray-200) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-gray-200) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ===== TRANSITION CLASSES ===== */

.transition-all {
    transition: all var(--transition-base);
}

.transition-colors {
    transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base);
}

.transition-transform {
    transition: transform var(--transition-base);
}

.transition-opacity {
    transition: opacity var(--transition-base);
}

/* ===== NUMBER COUNTER ANIMATION ===== */

.counter {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--color-primary);
    font-family: var(--font-accent);
}

/* Will be animated via JavaScript */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter.active {
    animation: countUp 0.8s var(--ease-out);
}

/* ===== ACCESSIBILITY: Reduce motion ===== */

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

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

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-content>* {
        animation: none !important;
    }
}

/* ===== PAGE TRANSITIONS ===== */

.page-transition {
    animation: fadeIn 0.4s var(--ease-out);
}

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

.gradient-animated {
    background: linear-gradient(-45deg,
            var(--color-primary),
            var(--color-primary-dark),
            var(--color-secondary),
            var(--color-primary));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}