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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Optimizacija - prikaži sve elemente odmah bez animacija */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Optimizacija - ubrzaj renderovanje */
img {
    content-visibility: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    height: auto;
}

/* Optimizacija - ubrzaj učitavanje slika */
img[loading="lazy"] {
    will-change: contents;
}

/* Optimizacija - ubrzaj renderovanje sa GPU akceleracijom */
.gallery-item,
.ba-scroll-item,
.review-item {
    transform: translateZ(0);
    will-change: transform;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #ea580c;
    --accent-light: #fb923c;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-section: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border-color: rgba(226, 232, 240, 0.8);
    --text-on-dark: #1e293b;
    --text-on-dark-light: #475569;
    --success-color: #059669;
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #ea580c 0%, #fb923c 100%);
    --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.25) 0%, rgba(30, 41, 59, 0.15) 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.18);
    --shadow-glow: 0 0 40px rgba(234, 88, 12, 0.2);
    --glow-accent: 0 0 20px rgba(234, 88, 12, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: #ffffff;
    background-image: 
        radial-gradient(at 0% 0%, rgba(234, 88, 12, 0.03) 0%, transparent 50%),
        radial-gradient(at 100% 100%, rgba(234, 88, 12, 0.03) 0%, transparent 50%);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
    -webkit-tap-highlight-color: rgba(234, 88, 12, 0.2);
    touch-action: manipulation;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(234, 88, 12, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    will-change: backdrop-filter, background; /* Performance optimization */
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234, 88, 12, 0.3), transparent);
    opacity: 0.6;
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    animation: logoBounce 2s ease-in-out infinite;
}

.logo-image:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

@keyframes logoBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-phone {
    display: flex;
    align-items: center;
}

.nav-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
    text-decoration: none;
}

.nav-call-btn i {
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    /* Desktop image - will be overridden for mobile */
    background-image: url('images/header.jpg');
    background-size: cover;
    background-position: right 20%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: white;
    margin-top: 80px;
    padding-top: 0;
    overflow: hidden;
}

/* Mobile image - optimized for portrait orientation */
@media (max-width: 768px) {
    .hero {
        background-image: url('images/header.jpg');
        background-attachment: scroll;
        background-position: right center;
        background-size: cover;
        min-height: 100vh;
        margin-top: 0;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.1) 0%, rgba(30, 41, 59, 0.08) 100%);
    }
    
    .hero::before {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.05) 0%, rgba(30, 41, 59, 0.03) 100%);
    }
    
    .hero::after {
        background: rgba(0, 0, 0, 0.02);
    }
    
    /* Povećaj kontrast teksta da bude čitljiviji sa svetlijom slikom */
    .hero-content h1,
    .hero-content h2,
    .hero-content p {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
    }
}

/* Tablet image - optional, can use desktop or mobile */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        background-image: url('images/header.jpg');
        background-position: right center;
    }
}

/* Desktop - ensure head is fully visible */
@media (min-width: 1025px) {
    .hero {
        background-position: right 20%;
    }
}

/* Large desktop - adjust for better head visibility */
@media (min-width: 1400px) {
    .hero {
        background-position: right 25%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(234, 88, 12, 0.005) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.06) 0%, rgba(30, 41, 59, 0.05) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.15) 0%, rgba(30, 41, 59, 0.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 10rem 0 6rem;
    margin: 0 auto;
    text-align: center;
    /* Animation removed to prevent page jump on load */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(234, 88, 12, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(234, 88, 12, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(234, 88, 12, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(234, 88, 12, 0.6);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

.hero-content h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    letter-spacing: 0.01em;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.4), 0 0 0 0 rgba(234, 88, 12, 0.5);
    border: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.5), var(--glow-accent);
    animation: glow 2s ease-in-out infinite;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-secondary::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-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

/* Stats Section */
.stats-section {
    background: var(--bg-white);
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item p {
    color: var(--text-medium);
}

.stat-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
}

.stat-item h3 {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-item p {
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    background: var(--bg-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.partners-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 3rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-carousel {
    display: flex;
    gap: 3rem;
    animation: scroll 25s linear infinite;
    width: fit-content;
    will-change: transform;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 220px;
    height: 130px;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.partner-logo:hover::before {
    width: 300px;
    height: 300px;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--glow-accent);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.5s;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3.25rem;
    }
}

.section-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 7rem 0;
    background: var(--bg-section);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-text h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.about-image {
    height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder:has(img) {
    background: transparent;
    padding: 0;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

/* Founders Section */
.founders-section {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.founder-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.founder-card:hover::before {
    transform: scaleX(1);
}

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

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1rem;
    color: var(--text-medium);
}

/* Process Section */
.process-section {
    background: var(--bg-white);
    padding: 7rem 0;
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 2rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    transition: all 0.5s;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.process-step:hover .step-icon {
    background: var(--gradient-accent);
    transform: rotateY(360deg) scale(1.1);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Certificates Section */
.certificates-section {
    background: var(--bg-light);
    padding: 7rem 0;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certificate-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
}

.certificate-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: all 0.5s;
}

.certificate-icon i {
    font-size: 2.5rem;
    color: white;
}

.certificate-card:hover .certificate-icon {
    background: var(--gradient-accent);
    transform: rotate(360deg) scale(1.1);
}

.certificate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.certificate-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Quick Quote Section */
.quick-quote-section {
    background: var(--bg-white);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.quick-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.2;
}

.quote-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quote-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.quote-features li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.quote-form-wrapper {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.quick-quote-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--bg-light);
    color: var(--text-dark);
}

.quick-quote-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1), var(--glow-accent);
}

/* Before/After Section */
.before-after-section {
    background: var(--bg-light);
    padding: 7rem 0;
}

.before-after-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: stretch; /* Usklađuje visinu oba elementa */
}

.ba-video-wrapper,
.ba-gallery-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    padding: 0 60px; /* Space for buttons */
    flex: 1; /* Rasteže se da popuni dostupan prostor */
    display: flex;
    flex-direction: column;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.video-carousel,
.ba-gallery-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    flex: 1; /* Rasteže se da popuni prostor */
    display: flex;
    align-items: stretch;
}

.video-slide,
.ba-gallery-slide {
    display: none;
    width: 100%;
    flex: 1;
    flex-direction: column;
}

.video-slide.active,
.ba-gallery-slide.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 30%; /* Još niži aspect ratio - više u širinu */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    min-height: 280px; /* Još niža minimalna visina */
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(234, 88, 12, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.ba-scroll-item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ba-scroll-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.ba-image-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 280px; /* Još niža visina - više u širinu */
    height: 100%;
}

.ba-image {
    position: relative;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ba-scroll-item:hover .ba-image img {
    transform: scale(1.1);
}

.ba-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 1;
}

.ba-item-info {
    padding: 1.5rem;
}

.ba-item-info h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ba-item-info p {
    color: var(--text-medium);
    margin: 0;
}

/* FAQ & Google Reviews Combined Section */
.faq-reviews-section {
    background: var(--bg-light);
    padding: 7rem 0;
}

.faq-reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: stretch; /* Usklađuje visinu oba elementa */
}

.faq-wrapper,
.reviews-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.faq-section-title,
.reviews-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Google Reviews Section */
.reviews-section {
    background: var(--bg-white);
    padding: 7rem 0;
}

.reviews-container {
    margin-top: 3rem;
}

.google-reviews-widget {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.google-logo {
    font-size: 2.5rem;
    color: #4285F4;
}

.reviews-rating {
    flex: 1;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #FFC107;
    font-size: 1.25rem;
}

.rating-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.25rem 0 0.25rem;
}

.reviews-count {
    color: var(--text-medium);
    margin: 0;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 1rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.reviews-list::-webkit-scrollbar {
    width: 8px;
}

.reviews-list::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.reviews-list::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.review-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.review-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.review-author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.review-date {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0.25rem 0 0;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
}

.review-stars i {
    color: #FFC107;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.reviews-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Map Section */
.map-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.map-wrapper {
    margin-top: 3rem;
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    height: 550px;
    isolation: isolate;
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    /* Custom map styling - removes green tint and creates modern look */
    filter: 
        hue-rotate(-15deg) 
        saturate(0.75) 
        brightness(0.9) 
        contrast(1.2)
        sepia(8%);
    transition: filter 0.5s ease;
}

.map-container:hover .google-map {
    filter: 
        hue-rotate(-8deg) 
        saturate(0.95) 
        brightness(0.98) 
        contrast(1.25)
        sepia(3%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Green overlay to enhance green tones */
        linear-gradient(135deg, rgba(234, 88, 12, 0.08) 0%, transparent 50%),
        /* Blue overlay for balance */
        linear-gradient(225deg, rgba(30, 64, 175, 0.04) 0%, transparent 50%),
        /* Subtle white overlay */
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

.map-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Enhance green tones */
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 70%),
        /* Add subtle green tint */
        linear-gradient(180deg, rgba(251, 146, 60, 0.03) 0%, rgba(30, 64, 175, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: soft-light;
    opacity: 0.6;
}

.map-info-card {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    z-index: 2;
    max-width: 300px;
    animation: slideInRight 0.8s ease-out;
    transition: all 0.5s;
}

.map-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
}

.map-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.map-info-icon i {
    font-size: 1.75rem;
    color: white;
}

.map-info-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-info-content p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.map-info-content .map-info-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.map-link-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}

.map-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.map-fallback i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.map-fallback p {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-fallback .map-note {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 400;
    margin-top: 1rem;
}

/* Show fallback if map fails to load */
.map-wrapper:has(.google-map[src=""]) .map-fallback,
.map-wrapper .google-map:not([src]) ~ .map-fallback {
    display: flex;
}

/* Services Section */
.services {
    background: var(--bg-light);
    padding: 7rem 0;
}

/* Sustainability Section */
.sustainability {
    padding: 5rem 0;
    background: var(--bg-section);
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}


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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sustainability-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.sustainability-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.sustainability-features {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.sustainability-features h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.sustainability-features p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.service-card:hover .service-icon::before {
    width: 200px;
    height: 200px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.5s;
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    transform: translateY(-8px) rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.4), var(--glow-accent);
}

.service-card:hover .service-icon i {
    transform: scale(1.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
}

/* Projects/Gallery Section */
.projects {
    padding: 7rem 0;
    background: var(--bg-section);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-on-dark-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    background: var(--bg-section);
    border-color: var(--accent-color);
    color: var(--text-on-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    border-color: var(--accent-color);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
}

.view-btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.view-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    overflow: auto;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.prev-btn, .next-btn {
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255,255,255,0.5);
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
    padding: 7rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.08;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
}

.testimonial-role {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.testimonial-content {
    margin-top: 1.5rem;
}

.testimonial-content p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 7rem 0;
    background: var(--bg-section);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    pointer-events: auto;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px; /* Minimum 16px to prevent zoom on iOS */
    transition: all 0.3s;
    background: var(--bg-light);
    color: var(--text-dark);
    min-height: 44px; /* Minimum touch target size */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1), var(--glow-accent);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item p i {
    color: var(--accent-color);
    width: 20px;
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
    padding: 7rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-wrapper .faq-list {
    max-width: 100%;
    margin: 0;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-newsletter {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

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

.footer-newsletter .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-newsletter .newsletter-form input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.footer-newsletter .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .newsletter-form input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.2);
}

.btn-newsletter {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section li {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.footer-phone-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.footer-phone-link:hover {
    color: var(--accent-color);
}

.footer-call-btn {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.footer-newsletter {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-newsletter .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-newsletter .newsletter-form input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.footer-newsletter .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .newsletter-form input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.2);
}

.btn-newsletter {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    body {
        padding-top: 70px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-phone {
        display: none;
    }
    
    .nav-wrapper {
        padding: 0.75rem 0;
    }
    
    .logo img {
        max-height: 40px;
    }

    .hero-content {
        padding: 2rem 1rem 3rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .hero-content h2 {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-feature {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .about-content,
    .contact-wrapper,
    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        grid-column: 1;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .sustainability-content {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .ba-image-wrapper {
        grid-template-columns: 1fr;
        height: auto;
    }

    .ba-image {
        height: 250px;
    }

    .map-info-card {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin: 2rem 1rem 1rem;
    }

    .map-container {
        height: 450px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 0.875rem;
    }
    
    .nav-menu a {
        padding: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.25rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Trust Badges Section */
.trust-badges-section {
    padding: 7rem 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border-color);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.trust-badge {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.trust-icon i {
    font-size: 2.5rem;
    color: white;
}

.trust-badge h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-badge p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
}

/* Warranty Section */
.warranty-section {
    padding: 7rem 0;
    background: var(--bg-light);
}

.warranty-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.warranty-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.warranty-text p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.warranty-list {
    list-style: none;
    padding: 0;
}

.warranty-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
}

.warranty-list li:last-child {
    border-bottom: none;
}

.warranty-list li i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warranty-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.warranty-card {
    background: var(--gradient-accent);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    color: white;
    max-width: 400px;
    width: 100%;
}

.warranty-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.warranty-card-icon i {
    font-size: 3rem;
    color: white;
}

.warranty-card h3 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.warranty-card > p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.warranty-card-details {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
}

.warranty-card-details p {
    padding: 0.5rem 0;
    font-size: 1rem;
    opacity: 0.95;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1.5rem 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid var(--accent-color);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-text i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.cookie-text p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-decline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-decline:hover {
    border-color: var(--text-medium);
    background: var(--bg-light);
}

/* Footer Links */
.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive - Trust Badges & Warranty */
@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .warranty-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie {
        flex: 1;
    }
}

/* Social Media Styles */
.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-media a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-media a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4);
    border-color: var(--accent-color);
}

/* Floating Social Media */
.floating-social {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 16px;
    color: var(--text-dark);
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateX(8px) scale(1.1);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    border-color: var(--accent-color);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: white;
    transform: scale(1.2);
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-link.tiktok:hover {
    background: #000000;
    border-color: #000000;
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

/* Responsive - Floating Social */
@media (max-width: 1024px) {
    .floating-social {
        left: 16px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .floating-social {
        display: none; /* Hide on mobile to avoid clutter */
    }
    
    .social-media {
        justify-content: center;
    }
    
    .social-media a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Back to Top Button - Removed */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 10001;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(234, 88, 12, 0.5);
}

/* Adjust chatbot toggle position */
#chatbot-toggle {
    bottom: 24px !important;
    right: 24px !important;
}

@media (max-width: 768px) {
    #chatbot-toggle {
        right: 16px !important;
        bottom: 24px !important;
    }
    
}


/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.emergency-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.emergency-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.emergency-text strong {
    font-size: 1.1rem;
    display: block;
}

.emergency-text span {
    font-size: 0.95rem;
    opacity: 0.95;
}

.emergency-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.emergency-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #dc2626;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Legal Pages Styles */
.legal-section {
    min-height: 80vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
}

/* Responsive - New Sections */
@media (max-width: 768px) {

    .footer-newsletter .newsletter-form {
        flex-direction: column;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .emergency-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        padding: 2rem 1rem 3rem;
        margin-top: 0;
        margin-right: 0;
        text-align: center;
    }

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

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

    .before-after-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-reviews-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ba-video-wrapper,
    .ba-gallery-wrapper {
        position: relative;
    }

    .carousel-container {
        padding: 0 50px; /* Reduced padding on mobile */
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .reviews-header {
        flex-direction: column;
        text-align: center;
    }

    /* Additional Mobile Optimizations */
    .section-header {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-header h4 {
        font-size: 0.9rem;
    }

    .section-header p {
        font-size: 1rem;
        margin-top: 1rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    /* Stats Grid */
    .stats-grid {
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 0.95rem;
    }

    /* Partners Section */
    .partners-section {
        padding: 4rem 0;
    }

    /* About Section */
    .about {
        padding: 4rem 0;
    }

    .about-text h3 {
        font-size: 1.75rem;
    }

    /* Process Timeline */
    .process-section {
        padding: 4rem 0;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }

    .process-step h3 {
        font-size: 1.5rem;
    }

    /* Certificates */
    .certificates-section {
        padding: 4rem 0;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Quick Quote */
    .quick-quote-section {
        padding: 4rem 0;
    }

    .quote-form-wrapper {
        padding: 2rem 1.5rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 4rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Trust Badges */
    .trust-badges-section {
        padding: 4rem 0;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-badge {
        padding: 2rem 1.5rem;
    }

    /* Warranty */
    .warranty-section {
        padding: 4rem 0;
    }

    .warranty-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    /* Contact Section */
    .contact {
        padding: 4rem 0;
    }

    .contact-info {
        margin-top: 2rem;
        text-align: center;
    }

    /* Map Section */
    .map-section {
        padding: 4rem 0;
    }

    /* Projects/Gallery */
    .projects {
        padding: 4rem 0;
    }

    .gallery-filter {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .filter-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq-item {
        padding: 1.25rem 1rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    /* Emergency Banner */
    .emergency-banner {
        padding: 1rem;
    }

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

    /* Better touch targets */
    .btn,
    .filter-btn,
    .carousel-btn,
    .view-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improved spacing */
    section {
        padding: 3rem 0;
    }

    /* Better text readability */
    p {
        font-size: 1rem;
        line-height: 1.7;
    }

    h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    /* Hero improvements */
    .hero {
        min-height: 100vh;
        padding: 0;
        margin-top: 0;
    }

    .hero-content {
        padding: 2rem 1rem 3rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    /* Navigation improvements */
    .navbar {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-wrapper {
        padding: 0.75rem 0;
    }

    .logo img {
        max-height: 40px;
    }

    /* Form improvements */
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    /* Carousel improvements */
    .carousel-container {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1.5rem 1rem 2.5rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-content h2 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-feature {
        font-size: 0.85rem;
    }
    
    .hero-buttons .btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .carousel-container {
        padding: 0 30px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .trust-badge,
    .service-card,
    .certificate-card {
        padding: 1.5rem 1rem;
    }

    .footer-content {
        gap: 2rem;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 3rem 1rem 2rem;
    }
}

