:root {
    --primary: #E67E22;
    --primary-dark: #D35400;
    --primary-light: #F39C12;
    --secondary: #27AE60;
    --secondary-dark: #1E8449;
    --secondary-light: #2ECC71;
    --bg-cream: #FFF9F5;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-warm: #FDF6F0;
    --text-dark: #2C3E50;
    --text-medium: #34495E;
    --text-light: #7F8C8D;
    --text-muted: #95A5A6;
    --accent-blue: #3498DB;
    --accent-teal: #1ABC9C;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 4px 30px rgba(230, 126, 34, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-cream);
    overflow-x: hidden
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    will-change: opacity
}

.loader.hidden {
    opacity: 0;
    pointer-events: none
}

.loader-content {
    text-align: center
}

.loader-logo {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite
}

.loader-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    height: auto
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    transition: var(--transition)
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md)
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand-logo {
    height: 50px;
    width: auto;
    transition: var(--transition)
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.05)
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 32px;
    align-items: center
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: var(--transition)
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition)
}

.nav-menu a:hover {
    color: var(--primary)
}

.nav-menu a:hover::after {
    width: 100%
}

.nav-dropdown {
    position: relative
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer
}

.dropdown-arrow {
    font-size: 0.6rem;
    transition: var(--transition)
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg)
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 200px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 12px 0;
    margin-top: 15px;
    list-style: none;
    border: 1px solid var(--border)
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    margin-top: 10px
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition)
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary)
}

.dropdown-menu li a::after {
    display: none
}

.dropdown-combined {
    line-height: 1.6;
    text-align: center
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px
}

.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)
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 100px 24px 40px;
    overflow-y: auto
}

.mobile-nav.active {
    transform: translateX(0)
}

.mobile-nav>a {
    display: block;
    padding: 18px 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    transition: var(--transition)
}

.mobile-nav>a:hover {
    color: var(--primary);
    padding-left: 10px
}

.mobile-dropdown {
    border-bottom: 1px solid var(--border)
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition)
}

.mobile-dropdown-toggle:hover {
    color: var(--primary)
}

.mobile-dropdown .dropdown-arrow {
    transition: var(--transition)
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg)
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    padding-bottom: 12px
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block
}

.mobile-dropdown-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text-medium);
    font-size: 1rem;
    transition: var(--transition)
}

.mobile-dropdown-menu a:hover {
    color: var(--primary)
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease
}

.hero-slide.active {
    opacity: 1
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 249, 245, 0.55) 0%, rgba(255, 255, 255, 0.50) 50%, rgba(253, 246, 240, 0.55) 100%)
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out
}

.hero-badge::before {
    content: ''
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both
}

.hero h1 span {
    color: var(--primary)
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    background: rgba(255, 255, 255, 0.85);
    padding: 16px 24px;
    border-radius: 50px
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both
}

.stat-item {
    text-align: center
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 4px
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    cursor: pointer;
    border: none
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow)
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(230, 126, 34, 0.35)
}

.btn-outline {
    background: #1e3a5f;
    color: var(--white);
    border: none
}

.btn-outline:hover {
    background: #152a45;
    color: var(--white);
    transform: translateY(-3px)
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition)
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2)
}

.slider-dot:hover {
    background: var(--primary)
}

.section {
    padding: 80px 20px
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto
}

.bg-white {
    background: var(--white)
}

.bg-cream {
    background: var(--bg-cream)
}

.bg-light {
    background: var(--bg-light)
}

.bg-warm {
    background: var(--bg-warm)
}

.contact-section {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
    padding: 80px 20px
}

.contact-grid {
    display: grid;
    gap: 24px
}

.contact-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border)
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.contact-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--bg-cream);
    box-shadow: var(--shadow-md)
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.1)
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px
}

.contact-card .title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 16px;
    transition: var(--transition);
    pointer-events: none
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: var(--transition)
}

.whatsapp-btn:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3)
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px
}

.services-section {
    background: var(--white);
    padding: 100px 20px
}

.services-grid {
    display: grid;
    gap: 24px
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg)
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition)
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-img {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #F5A623
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow)
}

.service-card:hover .service-img img {
    transform: scale(1.1)
}

.service-content {
    padding: 24px
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md)
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6
}

.about-section {
    background: var(--bg-cream);
    padding: 100px 20px
}

.about-grid {
    display: grid;
    gap: 40px;
    align-items: center
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.about-image img {
    width: 100%;
    height: auto;
    display: block
}

.about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8
}

.about-features {
    display: grid;
    gap: 16px;
    margin-top: 24px
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem
}

.about-feature span {
    font-weight: 600;
    color: var(--text-dark)
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: var(--transition)
}

.location-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px)
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 40px
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0
}

.vm-section {
    padding: 60px 20px
}

.vm-grid {
    display: grid;
    gap: 24px
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition)
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary))
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px
}

.vm-card h3 .icon {
    font-size: 1.8rem
}

.vm-card p {
    color: var(--text-medium);
    line-height: 1.8
}

/* References / Referanslarımız Section */
.references-section {
    background: #FFF5EE;
    padding: 80px 20px;
    position: relative;
    overflow: hidden
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(230, 126, 34, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(39, 174, 96, 0.06) 0%, transparent 50%);
    pointer-events: none
}

.ref-title {
    color: var(--text-dark) !important
}

.ref-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px
}

.ref-slider-container {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-lg)
}

.ref-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform
}

.ref-slide {
    min-width: calc(20% - 16px);
    max-width: calc(20% - 16px);
    flex-shrink: 0;
    text-align: center;
    transition: var(--transition)
}

.ref-slide:hover {
    transform: translateY(-6px)
}

.ref-slide-img {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition)
}

.ref-slide:hover .ref-slide-img {
    border-color: rgba(230, 126, 34, 0.4);
    box-shadow: var(--shadow-lg)
}

.ref-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition-slow)
}

.ref-slide:hover .ref-slide-img img {
    transform: scale(1.05)
}

.ref-slide-title {
    color: var(--text-dark);
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 12px;
    line-height: 1.3;
    padding: 0 2px;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal
}

.ref-nav-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 2
}

.ref-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4)
}

.ref-nav-btn svg {
    width: 20px;
    height: 20px
}

.brands {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden
}

.brands-title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px
}

.brands-track {
    display: flex;
    width: max-content;
    animation: slide 40s linear infinite
}

.brands-track img {
    height: 50px;
    margin: 0 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition)
}

.brands-track img:hover {
    filter: grayscale(0%);
    opacity: 1
}

@keyframes slide {
    to {
        transform: translateX(-50%)
    }
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 30px
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px
}

.footer-brand {
    margin-bottom: 16px
}

.footer-logo {
    height: 45px;
    width: auto
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7
}

.footer h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white)
}

.footer ul {
    list-style: none
}

.footer li {
    margin-bottom: 12px
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition)
}

.footer a:hover {
    color: var(--primary)
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition)
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5)
}

.whatsapp-float svg {
    width: 30px;
    height: 30px
}

.page-header {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
    padding: 140px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('gesresim/carousel-1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative
}

.page-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
    position: relative
}

.blog-grid {
    display: grid;
    gap: 24px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border)
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.blog-card-header {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-warm), var(--bg-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.blog-card-header img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: var(--transition-slow)
}

.blog-card:hover .blog-card-header img {
    transform: scale(1.1)
}

.blog-number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem
}

.blog-icon {
    font-size: 3rem;
    opacity: 0.3
}

.blog-card-body {
    padding: 24px
}

.blog-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px
}

.blog-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem
}

.article-header {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
    padding: 140px 20px 60px;
    text-align: center
}

.article-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-light)
}

.article-content {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white)
}

.article-content h2 {
    color: var(--text-dark);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary)
}

.article-content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 30px 0 12px
}

.article-content p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.9
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-medium)
}

.article-content li {
    margin-bottom: 8px
}

.toc-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px
}

.toc-box h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    border: none;
    padding: 0
}

.toc-box ul {
    list-style: none;
    padding: 0
}

.toc-box li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border)
}

.toc-box li:last-child {
    border: none
}

.toc-box a {
    color: var(--text-medium)
}

.toc-box a:hover {
    color: var(--primary)
}

.info-box {
    background: rgba(230, 126, 34, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 24px 0
}

.info-box p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500
}

blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 24px 0;
    border-radius: var(--radius-md);
    font-style: italic;
    color: var(--text-medium)
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 0
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 12px;
    border: none;
    padding: 0
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: var(--transition)
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0)
}

.animate-delay-1 {
    transition-delay: 0.1s
}

.animate-delay-2 {
    transition-delay: 0.2s
}

.animate-delay-3 {
    transition-delay: 0.3s
}

.animate-delay-4 {
    transition-delay: 0.4s
}

.counter {
    display: inline-block
}

@media (min-width:992px) {
    .menu-toggle {
        display: none
    }

    .nav-menu {
        display: flex
    }

    .mobile-nav {
        display: none !important
    }

    .hero {
        min-height: 100vh
    }

    .hero-stats {
        gap: 80px
    }

    .section {
        padding: 120px 20px
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px
    }

    .about-grid {
        grid-template-columns: 1fr 1.2fr
    }

    .vm-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr
    }

    .brands-track img {
        height: 60px;
        margin: 0 50px
    }

    .whatsapp-float {
        width: 56px;
        height: 56px
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px
    }

    .map-container iframe {
        height: 400px
    }

    .ref-slide {
        min-width: calc(20% - 16px);
        max-width: calc(20% - 16px)
    }
}

@media (min-width:1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (min-width:768px) and (max-width:991px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .vm-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ref-slide {
        min-width: calc(33.333% - 14px);
        max-width: calc(33.333% - 14px)
    }
}

@media (max-width:767px) {
    .navbar {
        padding: 10px 16px
    }

    .brand-logo {
        height: 40px
    }

    .hero {
        min-height: calc(100vh - 60px);
        padding-top: 60px
    }

    .hero-stats {
        gap: 24px
    }

    .stat-number {
        font-size: 2rem
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center
    }

    .section {
        padding: 60px 16px
    }

    .service-img {
        height: 180px
    }

    .vm-card {
        padding: 30px
    }

    .contact-card {
        padding: 24px 12px
    }

    .contact-phone {
        pointer-events: auto;
        cursor: pointer;
        max-width: 100%;
        justify-content: center;
        padding: 10px 16px
    }

    .contact-phone:hover {
        background: var(--primary);
        color: var(--white)
    }

    .contact-email {
        max-width: 100%;
        word-break: break-all;
        padding: 10px;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center
    }

    .whatsapp-btn {
        max-width: 100%;
        justify-content: center;
        padding: 14px 20px
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 16px;
        right: 16px
    }

    .brands-track img {
        height: 40px;
        margin: 0 20px
    }

    .page-header {
        padding: 100px 20px 60px
    }

    .article-header {
        padding: 100px 20px 50px
    }

    .ref-slide {
        min-width: calc(100% - 0px);
        max-width: 100%;
    }

    .ref-slider-track {
        gap: 16px
    }

    .ref-slide-img {
        height: 200px
    }

    .ref-nav-btn {
        width: 40px;
        height: 40px;
        min-width: 40px
    }

    .ref-nav-btn svg {
        width: 16px;
        height: 16px
    }

    .references-section {
        padding: 60px 16px
    }
}

.text-center {
    text-align: center
}

.text-primary {
    color: var(--primary)
}

.d-none {
    display: none
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
    border: none
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px)
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.9rem;
    user-select: all;
    cursor: text
}

.email-inline-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--primary)
}

.email-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px
}

.email-icon-wrapper svg {
    width: 36px;
    height: 36px;
    color: var(--primary)
}

.email-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

@media (min-width:992px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr) !important
    }
}