/* ================================
   MOJA ŠNAJDERKA - Main Stylesheet
   Elegant, Trust-Building Design
   ================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Warm, Trustworthy Palette */
    --color-primary: #8B4B6B;
    --color-primary-light: #A66B8B;
    --color-primary-dark: #6B3B4B;
    --color-primary-rgb: 139, 75, 107;
    
    /* Secondary Colors */
    --color-secondary: #D4A574;
    --color-secondary-light: #E4C5A4;
    --color-secondary-dark: #B48554;
    
    /* Accent */
    --color-accent: #C9A86C;
    --color-accent-light: #E5D4B0;
    
    /* Neutrals */
    --color-dark: #2C2C2C;
    --color-text: #3D3D3D;
    --color-text-light: #6B6B6B;
    --color-light: #F8F6F3;
    --color-white: #FFFFFF;
    --color-cream: #FDF9F3;
    --color-border: #E8E4DE;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-warm: linear-gradient(135deg, #FDF9F3 0%, #F5EDE3 100%);
    --gradient-hero: linear-gradient(180deg, rgba(44, 44, 44, 0.55) 0%, rgba(44, 44, 44, 0.7) 100%);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Header Height */
    --header-height: 80px;
}

/* ================================
   RESET & BASE
   ================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: overlay;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Custom Scrollbar - Thin and elegant */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(139, 75, 107, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 75, 107, 0.8);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 75, 107, 0.5) transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-sm);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.highlight {
    color: var(--color-primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.3em;
    background: var(--color-accent-light);
    z-index: -1;
    opacity: 0.6;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

.btn-call {
    width: 100%;
    margin-top: var(--space-md);
}

.btn-icon {
    font-size: 1.2em;
}

/* ================================
   HEADER
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: var(--color-light);
    padding: 4px;
    border-radius: var(--radius-full);
}

.lang-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    color: var(--color-text);
}

.lang-btn.active {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all var(--transition-fast);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        url('images/hero.webp') center/cover no-repeat;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-primary);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease forwards;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-title {
    color: var(--color-white);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: var(--color-secondary);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight::after {
    display: none;
}

.hero-subtitle {
    color: var(--color-white);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons .btn-secondary {
    color: var(--color-white);
    border-color: var(--color-white);
}

.hero-buttons .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-white);
    font-size: 0.95rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-secondary);
    color: var(--color-dark);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-base);
}

.hero-scroll a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ================================
   SECTIONS COMMON
   ================================ */
section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-title.light {
    color: var(--color-white);
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    background: var(--gradient-warm);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    position: relative;
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 2px solid var(--color-primary);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-primary);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

.service-desc {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.service-list li {
    position: relative;
    padding-left: var(--space-md);
    color: var(--color-text);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.services-note {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    max-width: 600px;
    margin: var(--space-xl) auto 0;
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-secondary);
}

.note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.services-note p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--color-primary);
    border-radius: var(--radius-xl);
    transform: translate(16px, 16px);
    z-index: -1;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content {
    padding-left: var(--space-lg);
}

.about-text {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.feature {
    display: flex;
    gap: var(--space-sm);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ================================
   GALLERY SECTION
   ================================ */
.gallery {
    background: var(--color-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

/* Horizontalne slike - zauzimaju 2 kolone */
.gallery-item.horizontal {
    grid-column: span 2;
    height: 280px;
}

/* Vertikalne slike - zauzimaju 1 kolonu */
.gallery-item.vertical {
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 75, 107, 0.3), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ================================
   HOURS SECTION
   ================================ */
.hours {
    background: var(--gradient-primary);
    padding: var(--space-2xl) 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hours-content {
    color: var(--color-white);
}

.hours-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-top: var(--space-md);
}

.hours-table {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 500;
}

.hours-row .time {
    color: var(--color-primary);
    font-weight: 600;
}

.hours-row.closed .day,
.hours-row.closed .time {
    color: var(--color-text-light);
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-card {
    background: var(--color-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-card:hover {
    background: var(--color-cream);
    transform: translateX(8px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.contact-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text-light);
}

.contact-card p {
    color: var(--color-dark);
    line-height: 1.6;
}

.contact-link {
    display: block;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--color-primary-dark);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: var(--space-xs);
}

.contact-map {
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ================================
   CTA SECTION
   ================================ */
.cta {
    background: var(--color-cream);
    text-align: center;
    padding: var(--space-2xl) 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: var(--space-sm);
}

.cta-text {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand .logo-text {
    background: none;
    -webkit-text-fill-color: var(--color-white);
    color: var(--color-white);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer ul a,
.footer ul li {
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer ul a:hover {
    color: var(--color-secondary);
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.footer-contact a {
    color: var(--color-secondary);
}

.footer-contact a:hover {
    color: var(--color-secondary-light);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
    background: var(--color-white);
    padding: var(--space-3xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--color-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-dark);
}

.author-location {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ================================
   FLOATING CTA BUTTON
   ================================ */
.floating-cta {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 14px 24px;
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    z-index: 998;
    transition: all var(--transition-base);
    animation: pulse-green 2s infinite;
    will-change: transform, box-shadow;
}

.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(34, 197, 94, 0.5);
}

.floating-cta svg {
    width: 20px;
    height: 20px;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(34, 197, 94, 0.6);
    }
}

/* ================================
   BACK TO TOP
   ================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    will-change: transform, opacity;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-4px);
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .about-grid,
    .hours-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-experience {
        right: var(--space-md);
        bottom: var(--space-md);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item.horizontal {
        grid-column: span 2;
        height: 220px;
    }
    
    .gallery-item.vertical {
        height: 280px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    section {
        padding: var(--space-2xl) 0;
    }
    
    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-white);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        z-index: 1000;
        padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .lang-switcher {
        margin-right: var(--space-md);
    }
    
    /* Hero Mobile */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Mobile */
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item.horizontal,
    .gallery-item.vertical {
        grid-column: span 1;
        height: 250px;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 300px;
    }
    
    .contact-card {
        padding: var(--space-md);
    }
    
    .contact-link {
        font-size: 1.1rem;
    }
    
    /* Floating CTA Tablet */
    .floating-cta {
        bottom: var(--space-md);
        left: var(--space-md);
    }
    
    .back-to-top {
        bottom: var(--space-md);
        right: var(--space-md);
    }
    
    /* Testimonials Tablet */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .section-header {
        margin-bottom: var(--space-xl);
    }
    
    .service-card {
        padding: var(--space-lg);
    }
    
    .hours-table {
        padding: var(--space-md);
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Floating CTA Mobile - hide text, show only icon */
    .floating-cta {
        bottom: var(--space-md);
        left: var(--space-md);
        padding: 14px;
        font-size: 0.85rem;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
    
    .floating-cta span {
        display: none;
    }
    
    .floating-cta svg {
        width: 24px;
        height: 24px;
    }
    
    /* Back to Top Mobile */
    .back-to-top {
        bottom: var(--space-md);
        right: var(--space-md);
        width: 44px;
        height: 44px;
    }
    
    /* Contact Cards Mobile */
    .contact-card {
        padding: var(--space-md);
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .contact-link {
        font-size: 1rem;
        word-break: break-all;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: var(--space-md);
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-scroll,
    .back-to-top,
    .menu-toggle,
    .lang-switcher {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-lg);
    }
    
    .hero-bg,
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        color: var(--color-dark);
    }
    
    .hero-title,
    .hero-subtitle {
        color: var(--color-dark);
    }
}

