/* =========================================================
   00) DESIGN TOKENS / ROOT VARIABLES (GLOBAL SYSTEM)
========================================================= */
:root{
    /* Brand */
    --accent: #A70651;
    --accent-dark: #7E043D;

    /* Surfaces */
    --bg: #111111;
    --panel: #0b0b0f;

    /* Text */
    --text: rgba(255,255,255,.90);
    --muted: rgba(255,255,255,.60);

    /* Lines */
    --line: rgba(255,255,255,.10);
    --line-soft: rgba(255,255,255,.06);

    /* Radii (UNIFIED) */
    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    /* Glass */
    --glass-1: rgba(255,255,255,.03);
    --glass-2: rgba(255,255,255,.05);

    /* Shadows */
    --shadow-soft: 0 12px 30px rgba(0,0,0,.35);
    --shadow-deep: 0 22px 70px rgba(0,0,0,.45);
    --shadow-accent: 0 0 0 1px rgba(167,6,81,.25);

    /* Motion */
    --ease-1: cubic-bezier(.22,.61,.36,1);
    --ease-2: cubic-bezier(.4, 0, .2, 1);

    /* Type scale */
    --fs-body: 15px;
    --fs-small: 13px;
    --fs-xs: 12px;

    --fs-h1: clamp(2rem, 3.5vw, 3.2rem);
    --fs-h2: clamp(1.6rem, 2.2vw, 2rem);
    --fs-h3: 1.1rem;

    --lh-body: 1.75;
}

/* =========================================================
   01) BASE / TYPOGRAPHY
========================================================= */
html, body { 
	font-family: "Poppins", 
	sans-serif !important; 
    overflow-x: hidden;
    max-width: 100%;
}
body {
    background: var(--bg);
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

/* =========================================================
   02) UTILITIES
========================================================= */
.ms-6 { margin-left: 4rem!important }
.ms-7 { margin-left: 5rem!important }
.ms-8 { margin-left: 6rem!important }
.ms-9 { margin-left: 7rem!important }
.ms-10 { margin-left: 8rem!important }
.ms-11 { margin-left: 9rem!important }

.fs-7 { font-size: 0.875rem; }  /* 14px */
.text-orange { color: #FF7F00; }

/* Shared section heading underline (useful for other titles too) */
.section-underline {
    position: relative;
    display: inline-block;
}
.section-underline::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:100%;
    height:3px;
    border-radius:999px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity:.9;
}

/* =========================================================
   03) HERO SECTION
========================================================= */
.hero-section {
    /*min-height: 100vh;*/
}

.hero-text {
    color: rgba(255, 255, 255, 0.90);
    transition: all 0.3s var(--ease-1);
    font-size: clamp(2rem, 3.2vw, 2.8125rem);
    font-style: normal;
    font-weight: 600;
    max-width: 560px;
}

.text-shadow-text {
    position: absolute;
    top: 1.8em;
    pointer-events: none;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    text-stroke: 1px rgba(255, 255, 255, 0.2);
}

.hero-sub-text {
    color: rgba(255, 255, 255, 0.90);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s var(--ease-1);
    /*font-family: 'Disket Mono', monospace !important;*/
}

/* Button */
.btn-gradient {
    background: linear-gradient(90deg, #D9005E 1%, #FFA500 100%);
    color: white;
    border-radius: var(--radius-pill);
    transition: all 0.3s var(--ease-1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,.12);
}

.btn-gradient:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.35);
    color: white;
    border-color: rgba(255,255,255,.35);
}

/* Hero visuals */
.hero-svg {
    position:absolute;
    top:0;
    left:50%;
    transform: translateX(-50%);

    width: 40%;          /* ⬅ artıq sabit px deyil */
    max-width: 240px;    /* desktop limit */
    height: auto;

    z-index:2;
    pointer-events:none;
}

.hero-logo {
    position: relative;
    z-index: 1;
}

/* =========================================================
   04) HERO MARQUEE
========================================================= */
.hero-marquee {
    width: 100%;
    overflow: hidden;
    background: #11151C;
    background-image: url(../image/about-dot-shape.webp);
    background-repeat: no-repeat;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 15px 0;
}

.hero-marquee-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}

.hero-marquee-text {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #fff;
    margin-right: 2.5rem;
}

.hero-marquee-dot {
    width: 8px;
    height: 8px;
    background: #A70651;
    display: inline-block;
    margin-right: 2.5rem;
}

.hero-marquee-track > :last-child {
    margin-right: 0;
}

/* =========================================================
   05) ANIMATIONS (HERO / SVG)
========================================================= */
@keyframes tilt-left {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-65deg) scale(1.2); }
    65% { transform: rotate(-65deg) scale(1.2); }
    100% { transform: rotate(0deg) scale(1); }
}

.animate-tilt {
    animation: tilt-left 3s var(--ease-1) forwards;
    transform-origin: center center;
    display: inline-block;
}

/* SVG üçün rotate + fade in */
@keyframes svgFadeSpin {
    0%   { transform: rotate(-65deg) scale(1.2); opacity: 0; }
    50%  { transform: rotate(-65deg) scale(1.2); opacity: 0.2; }
    100% { transform: rotate(0deg) scale(1); opacity: 1; }
}

.svg-fade-spin {
    opacity: 0;
    transform-origin: center center;
    animation: svgFadeSpin 2s var(--ease-1) 1s forwards;
    position: absolute;
    top: 0;
    left: 31%;
    transform: translateX(-31%);
    z-index: 2;
}

/* =========================================================
   06) RIGHT SIDE BLOCK (SHADOW / SLIDE)
   - Creative hiss saxlanıldı, amma diqqət oğurlamasın deyə yumşaldıldı
========================================================= */
.right-block {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background: rgba(142, 39, 80, 0.22);
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: slideAnimation 4s forwards;
    pointer-events: none; /* kontenti bloklamasın */
}

@keyframes slideAnimation {
    0% { right: -300px; opacity: 0.55; }
    30% { right: calc(100% - 300px); opacity: 0.55; }
    50% { right: calc(100% - 300px); opacity: 0.55; }
    80% { right: -300px; opacity: 0.55; }
    100% { right: -300px; opacity: 0; }
}

/* Button animation */
@keyframes buttonSlideIn {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    100% { transform: translate(0, 10px) scale(1); opacity: 1; }
}

.btn-animated {
    animation: buttonSlideIn 2s var(--ease-1) forwards;
    position: relative;
    top: -10px;
}

/* Text animation */
@keyframes textAppear {
    0% { opacity: 0; visibility: hidden; transform: translateY(10px); }
    100% { opacity: 1; visibility: visible; transform: translateY(0); }
}

.hero-sub-text {
    opacity: 0;
    visibility: hidden;
    animation: textAppear 2s var(--ease-1) 2s forwards;
}

/* =========================================================
   07) CATEGORY TOP BLOCK
========================================================= */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up { animation: fadeInUp 1s var(--ease-1) forwards; }

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-1);
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

.in-bg-a1 { background: #A41D50; }
.in-bg-a1:hover { background: #720f34; }

.block-services-cat-name {
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    padding:0 10px;
}

.block-services-cat-title {
    color: #FFF;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 90px;
}

.block-services-cat-title-2 {
    color: #BF235E;
    font-size: 35px;
    font-weight: 700;
    line-height: 70px;
}

.block-services-cat-text {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
}
.block-services-cat-text p {
    font-size: 1rem;
    line-height: 1.85;
}
.cart-logo {
    max-width: 200px;
    height: auto;
}

@media (min-width: 768px) {
    .lift-image-up { margin-top: -30px; }
}

/* =========================================================
   08) SECTION BLOCKS (SEKSIYA)
   - radius, border, hover timeline/about ilə eyni sistemə salındı
========================================================= */
.seksiya-title {
    background: linear-gradient(90deg, #F28D1D 0%, #C0333F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
}

.seksiya-title-2 { color: #BF235E; font-size: 35px; font-weight: 700; line-height: 50px; }
.seksiya-title-3 { color: #F28D1D; font-size: 35px; font-weight: 700; line-height: 50px; }
.seksiya-title-4 { color: #fff;   font-size: 35px; font-weight: 700; line-height: 50px; }

.seksiya-text {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
}

/* Core service card */
.seksiya-block {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-lg);   /* ✅ 50px yox, sistem radius */
    padding: 26px;
    color: #FFF;
    background: rgba(255,255,255,.02);
    transition: transform .35s var(--ease-1), border-color .35s var(--ease-1), background .35s var(--ease-1), box-shadow .35s var(--ease-1);
}

.seksiya-block:hover {
    background: rgba(167,6,81,.08);
    border-color: rgba(167,6,81,.30);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent), var(--shadow-soft);
}

.seksiya-block-2 {
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #17DCB8 0%, #19B5B8 50%, #1A8EB8 100%);
}

.seksiya-block-3 {
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #F28D1D 0%, #B82446 100%);
}

.seksiya-block-line {
    width: 25%;
    height: 1px;
    background-color: rgba(255,255,255,.75);
    margin: 10px 0 15px 0;
}

.seksiya-block p { margin-bottom: 0; }
.seksiya-block h5 img { object-fit: contain; }

/* Underline helpers */
.line-under,
.line-under-2 {
    display: inline-block;
    position: relative;
}
.line-under::after,
.line-under-2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 100%;
    background-color: rgba(255,255,255,.85);
}
.line-under-2 { margin-left: 15px; }

.platform-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.3rem;
    color: #fff;

    box-shadow:
        0 0 0 2px rgba(167, 6, 81, 0.18),
        0 7px 28px rgba(167, 6, 81, 0.55);

    transition: all 0.5s cubic-bezier(.2,.8,.2,1);
}

/* Hover effekti */
.seksiya-block:hover .platform-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow:
        0 0 0 2px rgba(167, 6, 81, 0.35),
        0 0 40px rgba(167, 6, 81, 0.9);
}

/* =========================================================
   09) BUTTON STATE (DUYME)
========================================================= */
.duyme .btn-pink {
    background: #ADADAD;
    border: none;
    color: #fff;
}

.duyme .btn-pink:focus,
.duyme .btn-pink:active,
.duyme .btn-pink.active,
.duyme .btn-pink:focus-visible {
    background: #BF235E;
    border: none;
    color: #fff;
}

/* =========================================================
   10) ACCORDION (FIXED: DARK + GLASS)
========================================================= */
.accordion-item:first-of-type, .accordion-item:last-of-type {
    border-radius: var(--radius-md);
}

.accordion-item {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.accordion-button {
    background: transparent;
    border: none;
    border-radius: 0;
    color: rgba(255,255,255,.88);
    box-shadow: none;
    padding: 16px 18px;
    transition: background .3s var(--ease-1), color .3s var(--ease-1);
}

.accordion-button::after{
    filter: invert(1);
    opacity: .75;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: rgba(167,6,81,.18);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-collapse {
    border-top: 1px solid rgba(255,255,255,.08);
}

.accordion-body{
    color: rgba(255,255,255,.75);
    font-size: 14px;
    line-height: 1.8;
    padding: 16px 18px 18px;
}

/* =========================================================
   11) TIMELINE (LOCAL VARS + STYLES)
========================================================= */
:root {
    --timeline-accent: #A70651;
    --timeline-accent-dark: #7E043D;
    --timeline-bg: #050509;
}
@property --progress {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}
.timeline-section{
    position:relative;
    background:#11151C;
    overflow: visible;
    border-top:1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* subtle tech grid */
.timeline-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size:40px 40px;
    opacity:.35;
    pointer-events:none;
    z-index:1;
}
.timeline-section::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:78%;
    height:100%;

    background-image: url("../image/about-dot-shape.webp");
    background-repeat: no-repeat;
    background-position: right top;

    filter: blur(0.3px);
    pointer-events:none;
    z-index:1;

    mask-image: linear-gradient(
        270deg,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,.85) 40%,
        rgba(0,0,0,.4) 70%,
        rgba(0,0,0,0) 100%
    );
}
/* content üstə çıxsın */
.timeline-section .container{
    position:relative;
    z-index:2;
}

.timeline-heading {
    color: #ffffff;
    font-weight: 500;
    font-size: var(--fs-h2);
    position: relative;
    display: inline-block;
}
.timeline-heading::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:100%;
    height:3px;
    border-radius:999px;
    background: linear-gradient(90deg, var(--timeline-accent), transparent);
    opacity:.9;
}

.timeline {
    position: relative;
    isolation:isolate;
}


/* Step wrapper */
.timeline-step {
    position: relative;
    margin-bottom: 32px; /* tighter */
}
.timeline-step,
.timeline-card,
.timeline-icon{ position:relative; z-index:1; }

/* Hər step üçün segment */
.timeline-line-segment {
    position: absolute;
    left: 27px;
    top: 18px;
    bottom: -44px;
    width: 3px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 1;
    overflow: hidden;
    --fill: 0%;
}

/* Dolan hissə */
.timeline-line-segment::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--fill);
    background: var(--timeline-accent-dark);
    transition: height 0.12s linear;
}

/* Son step-dən sonra xətt olmasın */
.timeline-step:last-child .timeline-line-segment {
    display: none;
}

/* Icon */
.timeline-icon {
    position: absolute;
    left: 8px;
    top: 4px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #232328;
    color: #fff;
    font-size: 14px;
    z-index: 2;

    box-shadow: 0 0 0 4px rgb(58 58 58 / 18%);
    transform: none;

    transition:
        background 0.3s var(--ease-1),
        box-shadow 0.3s var(--ease-1),
        transform 0.2s var(--ease-1),
        border-color 0.3s var(--ease-1);

    border: 1px solid rgba(255, 255, 255, 0.20);
}

.timeline-icon-arrow {
    display: inline-block;
    transform: translateX(1px);
}

.timeline-icon i{
    font-size:20px;
    color:white;
    display:inline-block;
    transition: transform .35s cubic-bezier(.25,.8,.25,1);
}

/* hover zamanı */
.timeline-step:hover .timeline-icon i{
    transform: scale(1.18);
}

/* Card */
.timeline-card {
    position: relative;
    overflow: hidden;
    margin-left: 65px;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    background: var(--glass-1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #f4f4f4;
    transition: border-color 0.3s var(--ease-1), background 0.3s var(--ease-1), transform .35s var(--ease-1), box-shadow .35s var(--ease-1);
}

.timeline-title {
    font-size: var(--fs-h3);
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.timeline-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,.72);
    margin: 0;
}

/* Hover: agency feel */
@media (hover:hover) and (pointer:fine){
    .timeline-step:hover .timeline-card{
        border-color: rgba(255,255,255,.12);
        background: rgba(255,255,255,.04);
        transform: translateY(-1px);
    }
}

/* Active sweep */
.timeline-step.is-active .timeline-card::before {
    opacity: 1;
    animation: card-sweep 1.6s var(--ease-1) forwards;
}

@keyframes card-sweep {
    0% { transform: translateX(-40%); opacity: 0; }
    25% { opacity: 1; }
    100% { transform: translateX(40%); opacity: 0; }
}

/* ACTIVE card */
.timeline-step.is-active .timeline-card {
    box-shadow: var(--shadow-accent), var(--shadow-soft);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    background: var(--glass-2);
}

/* COMPLETED / ACTIVE line fill */
.timeline-step.is-completed .timeline-line-segment { --fill: 100%; }
.timeline-step.is-active .timeline-line-segment { --fill: 100%; }

/* COMPLETED + ACTIVE icon */
.timeline-step.is-completed .timeline-icon,
.timeline-step.is-active .timeline-icon {
    background: var(--timeline-accent-dark);
    box-shadow: 0 0 0 6px rgba(167, 6, 81, 0.3);
    transform: scale(1.07);
}

/* Mobil */
@media (max-width: 576px) {
    .timeline-section { padding-inline: 1rem; }
    .timeline { padding-left: 50px; }
    .timeline-card { padding: 18px 18px; }
}

/* ICON AROUND ROTATING ARROW RING */
.timeline-icon::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;

    --progress: 0deg;

    background: conic-gradient(
        var(--timeline-accent) var(--progress),
        transparent var(--progress)
    );

	mask: radial-gradient(
		farthest-side,
		transparent calc(100% - 3px),
		rgba(0,0,0,0.8) calc(100% - 2px),
		black calc(100% - 1px)
	);
	-webkit-mask: radial-gradient(
		farthest-side,
		transparent calc(100% - 3px),
		rgba(0,0,0,0.8) calc(100% - 2px),
		black calc(100% - 1px)
	);

    opacity: 0;
    pointer-events: none;
	filter: blur(1px);
}

@keyframes ring-clockwise {
    0% {
        --progress: 0deg;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        --progress: 360deg;
        opacity: 1;
    }
}

.timeline-step.is-active .timeline-icon::after {
    animation: ring-clockwise 2s cubic-bezier(.25,.8,.25,1) forwards;
}

.timeline-step.is-completed .timeline-icon::after {
    animation: none;
    opacity: 1;
    --progress: 360deg;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
    .timeline-card::before,
    .timeline-icon::after,
    .right-block,
    .animate-tilt,
    .svg-fade-spin,
    .btn-animated,
    .fade-in-up{
        animation: none !important;
        transition: none !important;
    }
}


/* =========================================================
   12) CONTACT CTA (LOCAL VARS + STYLES)
========================================================= */
:root {
    --timeline-accent: #A70651;
    --timeline-accent-dark: #7E043D;
    --contact-bg: #050509;
}

.contact-cta-top {
    background-image: url(https://html.ravextheme.com/redox/dark/assets/imgs/modern-agency-2/hero-shape-6.webp);
    background-repeat: no-repeat;
}
.contact-cta {
}

/* Sol blok */
.contact-cta-left {
    min-height: 320px;
    /*background-image: url("../image/ghost.gif");*/
    /*background-position: center right;*/
    /*background-size: contain;*/
    color: #fff;
    padding: 3rem 2.5rem;
}

.contact-cta-text { position: relative; }

.contact-cta-text p {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.5rem);
    line-height: 1.25;
}

/* Sağ blok */
.contact-cta-right {
    padding: 3rem 3rem;
}

.contact-form { width: 100%; }

.contact-label {
    display: block;
    color: #f0eefc;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.contact-input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    color: #ffffff;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0.35rem;
    font-size: 0.95rem;
    box-shadow: none;
}

.contact-input:focus {
    border-bottom-color: var(--timeline-accent);
    box-shadow: none;
    outline: none;
    background: transparent;
    color: #ffffff;
}

.contact-textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* Fayl yüklə xətti */
.contact-file-row {
    font-size: 0.9rem;
    color: #f0eefc;
}

.contact-file-line {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    height: 1px;
}

.contact-file-label {
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-file-label i { font-size: 0.9rem; }

/* Checkbox */
.contact-check .form-check-input {
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 1rem;
    height: 1rem;
    margin-top: 0.15rem;
}

.contact-check .form-check-input:checked {
    background-color: var(--timeline-accent);
    border-color: var(--timeline-accent);
}

.contact-check .form-check-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.45rem;
}

/* Button */
.contact-btn {
    border-radius: 999px;
    border: 1px solid var(--timeline-accent);
    color: #ffffff;
    background: transparent;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    font-size: 0.95rem;
    transition: background .3s var(--ease-1), border-color .3s var(--ease-1), transform .3s var(--ease-1);
}

.contact-btn:hover {
    background: var(--timeline-accent);
    border-color: var(--timeline-accent);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Mobil adaptasiya */
@media (max-width: 992px) {
    .contact-cta-left,
    .contact-cta-right {
        padding: 2.25rem 1.8rem;
    }

    .contact-cta-text::before { top: 10px; }
}

@media (max-width: 576px) {
    .contact-cta { border-radius: 24px; }
}

/* Animasiya */
.cta-headline{
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    color: white;
}

.headline-highlight{
    position: relative;
    display: inline-block;
}

/* SVG ətrafında */
.headline-highlight .highlight_svg{
    position:absolute;
    inset:-70%;
    width: 240%;
    height: 240%;
    pointer-events:none;
}

.headline-highlight path{
    stroke: #fff;
    stroke-width: 3;
    fill:none;
    opacity:0;
    stroke-dasharray:0 1500;
}
.headline-highlight.active path{
    animation: headline-draw 1.2s cubic-bezier(.6,.2,.2,1) forwards;
}

.headline-highlight.active path + path{
    animation-delay:.3s;
}

@keyframes headline-draw{
    from{ stroke-dasharray:0 1500; opacity:0;}
    to{ stroke-dasharray:1500 1500; opacity:1;}
}
.headline-highlight.hide path{
    animation: headline-hide .6s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes headline-hide{
    from{
        opacity:1;
        stroke-dasharray:1500 1500;
    }
    to{
        opacity:0;
        stroke-dasharray:1500 1500;
    }
}




/* =========================================================
   13) FOOTER (small creative accents)
========================================================= */
.site-footer{
    background: #0b0b0f;
    color: rgba(255,255,255,.85);
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-brand-name{
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    line-height: 1.1;
}

.footer-brand-sub{
    color: rgba(255,255,255,.55);
}

.footer-logo{
    height: 44px;
    object-fit: contain;
}

.footer-about{
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,.62);
}

.footer-title{
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{ margin-bottom: 10px; }

.footer-links a{
    color: rgba(255,255,255,.60);
    text-decoration: none;
    font-size: 14px;
    position: relative;
}
.footer-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: width .35s var(--ease-1);
    opacity:.9;
}
.footer-links a:hover{ color: #fff; }
.footer-links a:hover::after{ width:100%; }

.footer-contact{
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
}

.footer-contact li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact i{
    color: rgba(255,255,255,.65);
    width: 16px;
}

.footer-contact a{
    color: rgba(255,255,255,.65);
    text-decoration: none;
}
.footer-contact a:hover{ color: #fff; }

.footer-contact span{
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

.footer-social{
    display: flex;
    gap: 10px;
}

.footer-social a{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(167, 6, 81, 0.45);
    background: rgba(255,255,255,.02);
    transition: background .3s var(--ease-1), border-color .3s var(--ease-1), transform .3s var(--ease-1);
}

.footer-social a:hover{
    background: rgba(167, 6, 81, 0.14);
    border-color: rgba(167, 6, 81, 0.7);
    transform: translateY(-1px);
}

/* =========================================================
   14) ABOUT (POLISHED + ORANGE SYSTEM ALIGN)
========================================================= */
.about-page{
    padding: 22px 0 96px;
}
.about-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
/* HEADBAR (breadcrumb) */
.about-headbar{
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015));
    border: 1px solid rgba(255, 255, 255, .07);
}

/* breadcrumb */
.about-breadcrumb .breadcrumb{
    margin: 0;
}
.about-breadcrumb .breadcrumb-item a{
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .25s var(--ease-1);
}
.about-breadcrumb .breadcrumb-item a:hover{
    color: rgba(255,255,255,.88);
}
.about-breadcrumb .breadcrumb-item.active{
    color: rgba(255,255,255,.85);
}

/* page title (h1) */
.about-page-title{
    margin-top: 18px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: .01em;
}

/* INTRO */
.about-intro{
    padding: 22px 0 18px; /* bir az yığcam */
}

.about-lead{
    color: rgba(255,255,255,.85);
    font-size: 13px;
    line-height: 1.85;
    margin: 0;
    padding-right: 6px;
}

.about-hero-img{
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    display: block;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: var(--shadow-deep);
}

/* COMMON SECTION UI (HEADINGS) */
.about-section-title{
    color: #ffffff;
    font-weight: 500;
    font-size: var(--fs-h2);
    position: relative;
    display: inline-block;
}

.about-section-title::after{
    content: "";
    position: absolute;
    left: 0px;
    bottom: -10px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--timeline-accent), transparent);
    opacity: .9;
}

/* cards (Values section wrapper) */
.about-card{
    margin-top: 34px;
}

/* VALUES */
.values-list{
    margin-top: 10px;
}

.values-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    margin-bottom: 10px;
    padding: 20px 0;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.06);
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.005)
    );
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: pointer;
}

/* radial gradient effekti */
.values-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(167,6,81,0.25),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.values-item:hover::before {
    opacity: 1;
}

.values-item:hover {
    transform: translateY(-4px);
    border-color: rgba(167,6,81,.6);
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.03),
        rgba(255,255,255,0.008)
    );
}

.values-item:hover .values-image img {
    transform: scale(1.1); /* azca böyü */
    filter: drop-shadow(0 0 12px rgba(167,6,81,.35));
}

.values-image{
    text-align: center;
    padding-top: 2px;
}

.values-image img{
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* narıncı glow */
    filter: drop-shadow(0 10px 20px color-mix(in srgb, var(--accent) 30%, transparent));
}

/* title + text daha səliqəli iyerarxiya */
.values-title{
    color: rgba(255,255,255,.95);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.values-text{
    color: rgba(255,255,255,.70);
}



/* TEAM */
.about-team{
    margin-top: 48px; /* 64 idi -> yığcam */
}

/* “Komandamız” başlığı mərkəzdə olsa belə underline düzgün görünsün */
.about-team .about-section-title{
    display: table;   /* text-center ilə uyumlu */
    margin-left: auto;
    margin-right: auto;
}

/* Row tam enə yayılmasın — HTML dəyişmədən mərkəzləşdiririk */
.about-team .row{
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

/* Team spacing */
.team-member {
    padding-top: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
}

/* Hover zamanı yalnız şəkil böyüsün */
.team-member:hover .team-photo {
    transform: scale(1.08); /* 8% böyümə */
    transition: transform 0.3s ease;
}

/* Normal vəziyyət */
.team-member .team-photo {
    transition: transform 0.3s ease;
}

/* şəkillər: premium görünüş (ana səhifə ilə eyni vibe) */
.team-photo{
    margin-bottom: 12px;
}

.team-name{
    font-weight: 500;
    font-size: 1.2rem;
    color: rgba(255,255,255,.95);
}

.team-role{
    color: rgba(255,255,255,.65);
    margin-top: 2px;
}

/* RESPONSIVE */
@media (max-width: 991.98px){
    .about-headbar{
        padding: 14px 14px;
        border-radius: 12px;
    }

    .about-page-title{
        font-size: 22px;
    }

    .about-intro{
        padding-top: 16px;
        padding-bottom: 14px;
    }

    .about-card{
        padding: 22px 16px;
        margin-top: 28px;
    }

    .values-item{
        grid-template-columns: 72px 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .values-image img{
        width: 44px;
        height: 44px;
    }

    .about-team .row{
        max-width: 100%;
    }
}

@media (max-width: 575.98px){
    .about-page-title{
        font-size: 20px;
    }

    .team-photo{
        width: 96px;
        height: 96px;
    }
}





.service-card {
    display: flex;
    align-items: center;
    gap: 18px;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.015)
    );
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(167,6,81,0.25),
        transparent 60%
    );
    opacity: 0;
    transition: .4s ease;
}

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

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(167,6,81,.6);
}
.service-card:hover .service-icon {
    border-color: rgba(167,6,81,.7);
    box-shadow: 0 0 18px rgba(167,6,81,.35);
}
.service-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.15);
}

.service-icon img {
    width: 26px;
    height: 26px;
}

.service-card h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}






.tech-stack {
    background: transparent;
}

.tech-title {
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Tech item */
.tech-item {
    display: flex;
    min-width: 165px;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: #e9ecef;
    border-radius: 10px;

    text-decoration: none;
    color: #111;

    transition: all 0.3s ease; /* daha yumşaq effekt */
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.tech-item:hover {
    background: #f0f4ff; /* fon rəngi dəyişir */
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.tech-item:hover .tech-icon svg {
    transform: scale(1.1);
}

/* Icon */
.tech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon svg {
    width: 26px;
    height: 26px;
    transition: transform 0.3s ease; /* ikonun böyüməsini ləğv etmək üçün hover effekti tətbiq etmirik */
}

/* Name */
.tech-name {
    white-space: nowrap;
    text-align: center; /* mərkəzləşdir */
}
@media (max-width: 576px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* servisler bolmesinin ardi */

.badge-pill {
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.02);
}
.badge-pill:hover{
    color:#fff;
    border-color: rgba(167,6,81,.6);
    background: rgba(167,6,81,.12);
    box-shadow: 0 0 18px rgba(167,6,81,.35);
}

.ai-card{
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.035),
        rgba(255,255,255,0.01)
    );
    border:1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding:24px;
    height:100%;
    transition:.35s var(--ease-1);
    position:relative;
    overflow:hidden;
}

.ai-card::before{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at top left, rgba(167,6,81,.25), transparent 60%);
    opacity:0;
    transition:.4s;
}

.ai-card:hover::before{ opacity:1; }

.ai-card:hover{
    transform: translateY(-6px);
    border-color: rgba(167,6,81,.6);
    box-shadow: var(--shadow-accent), var(--shadow-soft);
}
.ai-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background: rgba(167,6,81,.18);
    border:1px solid rgba(167,6,81,.5);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:16px;
    margin-bottom:14px;
    box-shadow: 0 0 20px rgba(167,6,81,.4);
}

.ai-card h5{
    color:#fff;
    font-weight:600;
    margin-bottom:8px;
}

.ai-card p{
    color: rgba(255,255,255,.7);
    font-size:14px;
    line-height:1.7;
}
.faq-num{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    border-radius:50%;
    background: rgba(167,6,81,.25);
    border:1px solid rgba(167,6,81,.6);
    color:#fff;
    font-size:13px;
    font-weight:600;
    margin-right:12px;
    flex-shrink:0;
}



.advantages-section{
    position: relative;
}

/* Title */
.advantages-title{
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* Right text */
.advantages-text{
    color: rgba(255,255,255,.7);
    font-size: 15px;
    line-height: 1.8;
    max-width: 620px;
}

/* Card */
.adv-card{
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 22px 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.015)
    );
    border: 1px solid rgba(255,255,255,0.08);
    transition: all .4s var(--ease-1);
    position: relative;
    overflow: hidden;
}

/* Radial glow */
.adv-card::before{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at top left, rgba(167,6,81,.25), transparent 60%);
    opacity:0;
    transition:.4s;
}

.adv-card:hover::before{
    opacity:1;
}

.adv-card:hover{
    transform: translateY(-6px);
    border-color: rgba(167,6,81,.6);
    box-shadow: var(--shadow-accent), var(--shadow-soft);
}

/* Number */
.adv-num{
    width:48px;
    height:48px;
    border-radius:50%;
    background: linear-gradient(135deg, #ff0066, #A70651);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#fff;
    font-size:18px;
    box-shadow: 0 0 25px rgba(167,6,81,.6);
    flex-shrink:0;
}

/* Texts */
.adv-card h5{
    color:#fff;
    font-weight:600;
    margin-bottom:6px;
}

.adv-card p{
    color: rgba(255,255,255,.7);
    font-size:14px;
    line-height:1.7;
    margin:0;
}

/* Mobile */
@media(max-width:768px){
    .advantages-title{
        font-size:1.7rem;
    }
}






.contact-title{
    font-size:2.6rem;
    font-weight:700;
    color:#fff;
}
.contact-sub{
    color:rgba(255,255,255,.6);
}

/* Left */
.contact-left-text{
    color:rgba(255,255,255,.7);
    margin-bottom:20px;
}

.contact-info-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
    color:rgba(255,255,255,.8);
}
.contact-info-item i{
    color:#ff0077;
}

.contact-socials{
    display:flex;
    gap:14px;
    margin-top:20px;
}
.contact-socials a{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,0,119,.4);
    color:#fff;
    transition:.3s;
    text-decoration: none;
}
.contact-socials a:hover{
    background:#ff0077;
    box-shadow:0 0 20px rgba(255,0,119,.6);
}

/* Steps */
.steps-title{
    margin-bottom:20px;
}
.step{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}
.step-num{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#ff0077;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/* Form */
.contact-form-glass{
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:32px;
    backdrop-filter: blur(20px);
}
.contact-form-glass input,
.contact-form-glass textarea{
    width:100%;
    background: rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.1);
    border-radius:10px;
    padding:14px;
    margin-bottom:14px;
    color:#fff;
}
.contact-form-glass textarea{ min-height:120px; }

.file-row label{
    color:rgba(255,255,255,.7);
    cursor:pointer;
}
.file-row input{ display:none; }

.remember{
    display:flex;
    align-items:center;
    gap:8px;
    margin:15px 0;
}

.btn-send{
    width:100%;
    padding:14px;
    border:none;
    border-radius:999px;
    background:#ff0077;
    color:#fff;
    font-weight:600;
    box-shadow:0 0 25px rgba(255,0,119,.6);
}
.btn-send:hover{
    transform: translateY(-2px);
}


@media (max-width:768px){
    .hero-visual{
        display:none;
    }
}





.hero-zone{
    position: relative;
    overflow: hidden;     /* ⬅ burada particles kəsilir */
}

/* particles */
#particles-bg{
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
}

#particles-bg canvas{
    filter:
        drop-shadow(0 0 6px rgba(255,0,120,.35))
        drop-shadow(0 0 14px rgba(167,6,81,.45));
}







