/* Inato-Inspired Design System - Clean Implementation */

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Exact Inato Colors */
:root {
    /* Inato Brand Colors - Exact match from screenshots */
    --inato-purple: #8B5CF6;
    --inato-purple-light: #A855F7;
    --inato-purple-dark: #7C3AED;
    --inato-orange: #FF6B3D;
    --inato-orange-light: #FF8B50;
    --inato-gradient-start: #8B5CF6;
    --inato-gradient-mid: #A855F7;
    --inato-gradient-end: #FF6B3D;
    
    /* Text Colors */
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.9);
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-transparent: rgba(255, 255, 255, 0.95);
    
    /* Typography - Inato uses elegant serif for headings */
    --font-heading: 'Playfair Display', 'Lora', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout */
    --container-max: 1280px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
}

/* Global Styles */
body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container System */
.padding-global {
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
}

.container-large {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

/* Navigation - Enhanced Glassmorphism effect like Inato */
.navbar {
    position: fixed;
    top: 20px;  /* Add top margin for floating effect */
    left: 50%;
    transform: translateX(-50%);  /* Center horizontally */
    width: 90%;  /* Responsive width */
    max-width: 1200px;  /* Max width constraint */
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);  /* More transparent */
    backdrop-filter: blur(15px) saturate(180%);  /* Consistent blur */
    -webkit-backdrop-filter: blur(15px) saturate(180%);  /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.18);  /* All-around border for floating effect */
    border-radius: 16px;  /* Rounded corners for modern look */
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);  /* Enhanced shadow */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Ensure the glass effect persists */
    will-change: backdrop-filter;
    isolation: isolate;
}

/* Enhanced glassmorphism on scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dynamic text colors based on background */
.navbar.on-dark .nav-link-main {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.navbar.on-dark .nav-link-main:hover {
    color: #ffffff;
}

.navbar.on-light .nav-link-main {
    color: rgba(55, 65, 81, 0.9);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.navbar.on-light .nav-link-main:hover {
    color: #374151;
}

.navbar.on-light .nav-brand {
    color: #FF6B3D;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.navbar.on-dark .nav-brand {
    color: #FF6B3D;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-lg);  /* Adjust padding for floating container */
    min-height: 60px;
    width: 100%;  /* Full width within the navbar container */
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: #FF6B3D;  /* Inato orange for brand */
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);  /* Shadow for better contrast */
}

.nav-brand:hover {
    color: #8B5CF6;  /* Inato purple on hover */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-2xl);
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-link-main {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);  /* White text for better visibility */
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--spacing-sm) 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);  /* Subtle shadow for contrast */
}

.nav-link-main:hover {
    color: #ffffff;  /* Pure white on hover */
}

.nav-link-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--inato-purple), var(--inato-orange));
    transition: width 0.3s ease;
}

.nav-link-main:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--inato-orange);
    color: var(--text-white);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 61, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--inato-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Hero Section with Curved Gradient Background - Exact Inato Style */
.section_hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1D4350;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #A43931, #1D4350);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #A43931, #1D4350); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    overflow: hidden;
    padding-top: 100px;
    text-align: center;
}

/* Curved bottom like Inato */
.section_hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--bg-white);
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: 1;
}

.hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    padding: var(--spacing-4xl) 0;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF69B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.6;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
    font-weight: 400;
    text-align: center;
}

.btn-hero {
    background: var(--inato-orange);
    color: var(--text-white);
    border: none;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 61, 0.4);
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.btn-hero:hover {
    background: var(--inato-purple);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

/* Content Sections */
.section-content {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-white);
    position: relative;
    z-index: 10;
    margin-top: -100px; /* Overlap with hero curve */
    padding-top: calc(var(--spacing-4xl) + 100px);
}

/* Inato-Style Gradient Cards Section */
.gradient-cards-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-white);
    position: relative;
    z-index: 10;
    margin-top: -100px; /* Overlap with hero curve */
    padding-top: calc(var(--spacing-4xl) + 100px);
}

.gradient-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-2xl);
    margin: var(--spacing-2xl) 0;
}

.gradient-card {
    position: relative;
    padding: var(--spacing-3xl);
    border-radius: 24px;
    color: white;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gradient-card:hover {
    transform: translateY(-8px);
}

.gradient-card.purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #9333EA 100%);
}

.gradient-card.orange {
    background: linear-gradient(135deg, #FF8B50 0%, #FF6B3D 50%, #F97316 100%);
}

.gradient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.card-arrow {
    position: absolute;
    top: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.gradient-card:hover .card-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(4px, -4px);
}

.card-number {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.card-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
    max-width: 90%;
}

/* Services Grid - Inato Style */
.h-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
    margin: var(--spacing-4xl) 0;
}

.h-card_block {
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.h-card_block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.h-card_block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.h-card_block.hotel::before {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
}

.h-card_block.pos::before {
    background: linear-gradient(135deg, #10B981, #059669);
}

.h-card_block.ai::before {
    background: linear-gradient(135deg, var(--inato-purple), var(--inato-purple-dark));
}

.h-card_block.custom::before {
    background: linear-gradient(135deg, var(--inato-orange), #FF4500);
}

.h-card-header .heading-style-24 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.h-card-body .para-style-16 {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.card-link {
    color: var(--inato-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.card-link::after {
    content: '→';
    margin-left: var(--spacing-xs);
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--inato-purple);
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* Stats Section - Inato Style */
.stats-grid-inato {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-3xl);
    margin: var(--spacing-4xl) 0;
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.stat-item {
    position: relative;
}

.stat-item .heading-96 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    background: linear-gradient(135deg, var(--inato-purple), var(--inato-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-item .para-style-18 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* Typography Classes - Inato Style */
.heading-style-48 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.para-style-18 {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-header h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Content */
.story-content {
    margin: var(--spacing-3xl) 0;
}

.story-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.story-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
    margin: var(--spacing-3xl) 0;
}

.value-card {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--inato-orange);
    margin-bottom: var(--spacing-lg);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-family: var(--font-body);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-4xl);
    margin: var(--spacing-3xl) 0;
}

.contact-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.contact-form-container p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-md);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--inato-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 61, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info */
.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--inato-orange);
    margin-top: var(--spacing-xs);
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Footer - Simplified like Inato */
.footer {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--spacing-4xl) 0 var(--spacing-xl) 0;
    margin-top: var(--spacing-4xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-family: var(--font-body);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--inato-orange);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--inato-orange);
    margin-bottom: var(--spacing-lg);
}

.footer-description {
    color: var(--text-secondary);
    margin: var(--spacing-lg) 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--inato-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--inato-orange);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--inato-orange);
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 100px;
    right: var(--spacing-xl);
    z-index: 1000;
    max-width: 400px;
}

.flash-message {
    padding: var(--spacing-lg) var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease;
}

.flash-success {
    background-color: #D1FAE5;
    color: #065F46;
    border-left: 4px solid #10B981;
}

.flash-error {
    background-color: #FEE2E2;
    color: #991B1B;
    border-left: 4px solid #EF4444;
}

.flash-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    margin-left: var(--spacing-lg);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .padding-global {
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
    }
    
    .nav-flex {
        padding: var(--spacing-lg);
    }
    
    .nav-menu {
        gap: var(--spacing-lg);
    }
}

@media screen and (max-width: 768px) {
    .padding-global {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-xl) 0;
        gap: var(--spacing-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .section_hero {
        padding-top: 120px;
        min-height: 80vh;
        text-align: center;
        justify-content: center;
    }
    
    .hero_content {
        padding: var(--spacing-3xl) 0;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }
    
    .gradient-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .gradient-card {
        min-height: 320px;
        padding: var(--spacing-2xl);
    }
    
    .h-card-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .stats-grid-inato {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
}

@media screen and (max-width: 480px) {
    .padding-global {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
    
    .stats-grid-inato {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero_content {
        text-align: center;
        margin: 0 auto;
        width: 100%;
        padding: var(--spacing-2xl) var(--spacing-sm);
    }
    
    .hero-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .flash-messages {
        right: var(--spacing-sm);
        left: var(--spacing-sm);
        max-width: none;
    }
    
    .section-content {
        margin-top: -50px;
        padding-top: calc(var(--spacing-3xl) + 50px);
    }
}

/* =====================================================
   SERVICE DETAIL PAGES - Professional Layout
   ===================================================== */

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    text-align: center;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--bg-white);
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: 1;
}

/* Hero color variants */
.hotel-hero {
    background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 50%, #1E40AF 100%);
}

.pos-hero {
    background: linear-gradient(135deg, #064E3B 0%, #059669 50%, #047857 100%);
}

.ai-hero {
    background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 50%, #6D28D9 100%);
}

.custom-hero {
    background: linear-gradient(135deg, #7C2D12 0%, #EA580C 50%, #C2410C 100%);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    padding: var(--spacing-4xl) 0;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.back-link {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.back-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.service-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-lg);
}

.service-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-desc {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.6;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
    font-weight: 400;
    text-align: center;
}

/* Service Sections */
.service-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-white);
    position: relative;
}

.service-section-alt {
    background: var(--bg-light);
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.screenshot-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Screenshot Image Wrapper - for real screenshots */
.screenshot-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    cursor: zoom-in;
    position: relative;
}

.screenshot-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.screenshot-card:hover .screenshot-img-wrap img {
    transform: scale(1.15);
}

/* Lightbox overlay for full screenshot view */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.3s ease;
    border: none;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

.screenshot-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
}

.screenshot-placeholder i {
    font-size: 3rem;
    opacity: 0.9;
}

.screenshot-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

/* Color variants for screenshot placeholders */
.screenshot-placeholder.pos-color {
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
}

.screenshot-placeholder.ai-color {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.screenshot-placeholder.custom-color {
    background: linear-gradient(135deg, #F97316 0%, #C2410C 100%);
}

.screenshot-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-xs);
    color: var(--text-primary);
}

.screenshot-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

/* Features Grid - Minimalist */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: var(--spacing-2xl);
    border-top: 1px solid rgba(0,0,0,0.08);
    border-left: 1px solid rgba(0,0,0,0.08);
}

.feature-item {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: var(--bg-white);
    border-right: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-section-alt .feature-item {
    background: var(--bg-light);
}

.feature-item:hover {
    background: var(--bg-light);
    transform: none;
    box-shadow: none;
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    margin-bottom: var(--spacing-lg);
    transition: transform 0.3s ease;
}

.feature-icon.blue {
    background: #2563EB;
}

.feature-icon.green {
    background: #059669;
}

.feature-icon.purple {
    background: #7C3AED;
}

.feature-icon.orange {
    background: #EA580C;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: var(--font-body);
    letter-spacing: -0.01em;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* CTA Section */
.service-cta {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: var(--spacing-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--border-radius);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--inato-orange);
    background: rgba(255,107,61,0.1);
    color: var(--inato-orange);
}

/* Service page responsive */
@media screen and (max-width: 768px) {
    .service-hero {
        min-height: 60vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Utility Classes */
.main-wrapper {
    display: block;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn-primary:focus,
.btn-hero:focus,
.nav-link-main:focus,
.card-link:focus {
    outline: 2px solid var(--inato-orange);
    outline-offset: 2px;
}

/* Selection Color */
::selection {
    background: var(--inato-orange);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--inato-orange);
    color: var(--text-white);
}