/* evtasiyorum.com - App CSS v2.0 (Minified) */
:root {
    --primary: #d4a843;
    --primary-dark: #1a1a1a;
    --accent: #d4a843;
    --accent-hover: #c99a35;
    --bg: #4f4f4f;
    --bg-dark: #454545;
    --bg-darker: #3a3a3a;
    --bg-light: #5a5a5a;
    --text: #f0f0f0;
    --text-light: #e0e0e0;
    --text-muted: #e0e0e0;
    --text-white: #ffffff;
    --border: #666666;
    --card-bg: #555555;
    --shadow: 0 2px 15px rgba(0, 0, 0, .15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .25);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

/* [data-theme="light"] - same as :root, single dark-gold theme */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s
}

ul,
ol {
    list-style: none
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.section {
    padding: 80px 0
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-label {
    display: inline-block;
    background: rgba(212, 168, 67, .15);
    color: #f5d76e;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px
}

.section-title span {
    color: #f5d76e
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none
}

.btn-primary {
    background: var(--accent);
    color: #1a1a1a
}

.btn-primary:hover {
    background: #c49a3d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, .3)
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text)
}

.btn-outline:hover {
    border-color: var(--accent);
    color: #f5d76e
}

.btn-dark {
    background: var(--bg-dark);
    color: #fff
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px
}

.top-bar {
    background: var(--bg-dark);
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .8)
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.top-bar a {
    color: rgba(255, 255, 255, .8);
    transition: color .3s
}

.top-bar a:hover {
    color: #1a1a1a
}

.header {
    background: rgba(255, 255, 255, .98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a1a
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #f5d76e
}

.logo-text span {
    color: #f5d76e
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600
}

.nav {
    display: flex;
    align-items: center
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-link {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text);
    transition: color .3s;
    padding: 8px 0;
    position: relative
}

.nav-link:hover,
.nav-link.active {
    color: #f5d76e
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s
}

.nav-link:hover::after {
    width: 100%
}

/* Mobile Toggle - Visible on mobile by default, hidden on desktop */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    align-items: center;
    justify-content: center;
    color: #f5d76e
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #d4a843;
    border-radius: 2px;
    transition: .3s
}

.mobile-toggle i {
    color: #f5d76e;
    font-size: 24px
}

/* Hide hamburger menu on desktop only */
@media(min-width:1025px) {

    .mobile-toggle,
    #mobileToggle {
        display: none !important
    }
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: #fff;
    overflow: hidden
}

.hero-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero-label {
    color: #f5d76e;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase
}

.hero-title span {
    color: #f5d76e
}

.hero-desc {
    color: rgba(255, 255, 255, .7);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-right {
    background: linear-gradient(135deg, var(--accent) 0%, #b8922e 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 0, 0, .2);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    margin-top: 30px
}

.hero-phone-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a1a
}

.hero-phone-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff
}

.video-showcase-section {
    padding: 80px 0;
    background: var(--bg-light)
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px
}

.video-card {
    background: var(--card-bg, #555555);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.video-card-player {
    position: relative;
    aspect-ratio: 9/16;
    max-height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-card-play {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a1a;
    transition: transform .3s, box-shadow .3s;
    z-index: 2
}

.video-card-play:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 168, 67, .4)
}

.video-card-content {
    padding: 24px;
    text-align: center
}

.video-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px
}

.video-card-content p {
    color: var(--text-muted);
    font-size: 14px
}

.video-showcase-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap
}

.video-showcase-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text)
}

.video-showcase-features i {
    color: #f5d76e
}

.stats-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url('/assets/images/stats-bg.jpg') center/cover;
    padding: 80px 0;
    color: #fff
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, .03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: var(--transition)
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .06);
    border-color: var(--accent)
}

.stat-icon {
    font-size: 40px;
    color: #f5d76e;
    margin-bottom: 16px
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.stat-label {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.floating-element {
    position: absolute;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    color: var(--accent);
    opacity: .15
}

.float-1 {
    top: 10%;
    left: 5%;
    font-size: 3rem
}

.float-2 {
    top: 20%;
    right: 10%;
    font-size: 2.5rem;
    animation-delay: -2s
}

.float-3 {
    bottom: 15%;
    left: 15%;
    font-size: 2rem;
    animation-delay: -4s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.service-card {
    background: var(--card-bg, #555555);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border)
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent)
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 168, 67, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #f5d76e
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px
}

.service-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6
}

.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.blog-home-card {
    background: var(--card-bg, #555555);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.blog-home-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.blog-home-image {
    height: 180px;
    overflow: hidden
}

.blog-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
}

.blog-home-card:hover .blog-home-image img {
    transform: scale(1.05)
}

.blog-home-content {
    padding: 20px
}

.blog-home-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-home-meta {
    font-size: 13px;
    color: var(--text-muted)
}

.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 60px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    transition: color .3s
}

.footer-links a:hover {
    color: #f5d76e
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, .5);
    font-size: 14px
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding: 80px 20px 20px
}

.mobile-menu.active {
    display: flex
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.mobile-menu-item {
    padding: 16px 20px;
    background: rgba(255, 255, 255, .05);
    border-radius: var(--radius);
    color: #fff;
    font-weight: 600
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer
}

@media(max-width:1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog-home-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:1024px) {
    .hero {
        grid-template-columns: 1fr
    }

    .hero-left {
        padding: 60px 30px
    }

    .hero-right {
        padding: 40px
    }

    .nav,
    .nav-list {
        display: none !important
    }

    .header-cta {
        display: none !important
    }

    .mobile-toggle,
    .header .mobile-toggle,
    .header-inner .mobile-toggle,
    #mobileToggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #f5d76e !important
    }

    .mobile-toggle i,
    .header .mobile-toggle i,
    #mobileToggle i {
        color: #f5d76e !important
    }

    .video-showcase-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center
    }

    .section {
        padding: 60px 0
    }

    .section-title {
        font-size: 28px
    }

    .hero-left {
        padding: 40px 20px
    }

    .hero-title {
        font-size: 32px
    }

    .hero-buttons {
        flex-direction: column
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .stat-number {
        font-size: 36px
    }

    .blog-home-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .video-showcase-features {
        flex-direction: column;
        align-items: center
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 15px
    }

    .btn {
        width: 100%;
        justify-content: center
    }

    .hero-left {
        padding: 30px 15px
    }

    .section {
        padding: 40px 0
    }
}

.seo-content-section {
    background: var(--bg-light)
}

.seo-content-wrapper {
    position: relative
}

.seo-content-fieldset {
    height: 450px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    background: var(--card-bg, #555555);
    scrollbar-width: thin
}

.seo-content-fieldset::-webkit-scrollbar {
    width: 6px
}

.seo-content-fieldset::-webkit-scrollbar-track {
    background: var(--bg-light)
}

.seo-content-fieldset::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px
}

.seo-content-fieldset h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent)
}

.seo-content-fieldset h3:first-child {
    margin-top: 0
}

.seo-content-fieldset p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px
}

.seo-content-fieldset a {
    color: #f5d76e;
    font-weight: 600
}

.seo-content-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--bg-light));
    pointer-events: none
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s, transform .6s
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0)
}