/* ========================================
   LOGO TASARIM PAGE - PREMIUM THEME
   Using Site's Main Gradient: Teal→Blue→Indigo
   ======================================== */

:root {
    --logo-gradient: linear-gradient(135deg, #14b8a6, #0ea5e9, #6366f1);
    --logo-teal: #14b8a6;
    --logo-blue: #0ea5e9;
    --logo-indigo: #6366f1;
    --logo-glow: rgba(14, 165, 233, 0.4);
}

/* ========================================
   HERO SECTION - SIMPLE & IMPACTFUL
   ======================================== */
.logo-hero {
    padding: 120px 0 50px;
    background: linear-gradient(180deg, #f0fdfa 0%, #f0f9ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.logo-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.min-vh-80 {
    min-height: 70vh;
}

/* Hero Title - BIG */
.hero-title-big {
    font-size: 4.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.text-gradient-logo {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-desc-big {
    font-size: 1.4rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
}

/* Hero Buttons */
.hero-buttons {
    margin-bottom: 50px;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Gradient Button */
.btn-gradient-logo {
    background: var(--logo-gradient);
    background-size: 200% auto;
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gradient-logo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.4);
    color: white;
    background-position: right center;
}

/* Mini Stats */
.hero-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.mini-stat i {
    color: var(--logo-teal);
    font-size: 1.1rem;
}

/* Hero Icon - Clean & Simple */
.hero-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(99, 102, 241, 0.08));
    border-radius: 50%;
    animation: pulse-slow 4s ease-in-out infinite;
}

.hero-icon-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 2px dashed rgba(14, 165, 233, 0.15);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

@keyframes pulse-slow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-icon-main {
    width: 180px;
    height: 180px;
    background: var(--logo-gradient);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px rgba(14, 165, 233, 0.35);
    position: relative;
    z-index: 2;
}

.hero-icon-main i {
    font-size: 4.5rem;
    color: white;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.logo-services {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.logo-services .container {
    max-width: 1200px;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(14, 165, 233, 0.1));
    color: var(--logo-blue);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-desc-left {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.04), rgba(14, 165, 233, 0.04));
    border-radius: 24px;
    padding: 30px 25px;
    border: 1px solid rgba(14, 165, 233, 0.08);
    transition: all 0.4s ease;
}

.feature-item:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--logo-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.25);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Package Cards */
.package-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 32px;
    padding: 45px 40px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--logo-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.package-card:hover {
    transform: translateY(-15px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 35px 80px rgba(14, 165, 233, 0.15);
}

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

.package-card.featured {
    background: linear-gradient(180deg, #f0fdfa 0%, #f0f9ff 50%, #eef2ff 100%);
    border: 2px solid rgba(14, 165, 233, 0.25);
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.12);
}

.package-card.featured::before {
    transform: scaleX(1);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--logo-gradient);
    color: white;
    padding: 8px 28px;
    border-radius: 0 0 20px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.package-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: all 0.4s ease;
}

.package-icon i {
    font-size: 2.2rem;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-card:hover .package-icon {
    background: var(--logo-gradient);
    transform: scale(1.1) rotate(5deg);
}

.package-card:hover .package-icon i {
    -webkit-text-fill-color: white;
    background: none;
}

.package-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.package-desc {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 28px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    text-align: left;
}

.package-features li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.08);
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 14px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i.fa-check {
    color: var(--logo-teal);
    font-size: 0.9rem;
}

.package-features li i.fa-times {
    color: #cbd5e1;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.logo-process {
    padding: 140px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    position: relative;
}

.process-timeline {
    margin-top: 70px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--logo-teal), var(--logo-blue), var(--logo-indigo));
    border-radius: 2px;
    z-index: 0;
}

.process-step {
    background: white;
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(14, 165, 233, 0.08);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 80px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(99, 102, 241, 0.08));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.step-icon i {
    font-size: 1.8rem;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step:hover .step-icon {
    background: var(--logo-gradient);
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.3);
}

.process-step:hover .step-icon i {
    -webkit-text-fill-color: white;
    background: none;
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.process-step p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   WHY US SECTION
   ======================================== */
.logo-why {
    padding: 140px 0;
    background: #fff;
}

.why-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 380px;
}

.grid-item {
    width: 170px;
    height: 170px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(14, 165, 233, 0.08));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.grid-item i {
    font-size: 3rem;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grid-item:hover {
    background: var(--logo-gradient);
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.3);
}

.grid-item:hover i {
    -webkit-text-fill-color: white;
    background: none;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 35px;
}

.why-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.03), rgba(14, 165, 233, 0.03));
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.08);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.06), rgba(14, 165, 233, 0.06));
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.1);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--logo-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.25);
}

.why-icon i {
    font-size: 1.4rem;
    color: white;
}

.why-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.logo-faq {
    padding: 140px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.logo-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.logo-faq-item {
    background: white;
    border-radius: 22px;
    border: 1px solid rgba(14, 165, 233, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.logo-faq-item:hover {
    border-color: rgba(14, 165, 233, 0.15);
    box-shadow: 0 15px 45px rgba(14, 165, 233, 0.08);
}

.logo-faq-item.active {
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.12);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-q:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.03), rgba(14, 165, 233, 0.03));
}

.faq-q h4 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.faq-toggle i {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo-faq-item.active .faq-toggle {
    background: var(--logo-gradient);
    transform: rotate(45deg);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.logo-faq-item.active .faq-toggle i {
    -webkit-text-fill-color: white;
    background: none;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;
}

.logo-faq-item.active .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 32px 28px;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.9;
    margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.logo-cta {
    padding: 100px 0;
    background: #fff;
}

.cta-box {
    background: var(--logo-gradient);
    background-size: 200% auto;
    border-radius: 36px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    position: relative;
    z-index: 1;
}

.cta-box .btn {
    position: relative;
    z-index: 1;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .logo-hero {
        padding: 130px 0 90px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
        padding: 24px 28px;
    }

    .hero-stats .stat:not(:last-child)::after {
        display: none;
    }

    .logo-showcase {
        height: 350px;
        margin-top: 50px;
    }

    .showcase-card {
        transform: scale(0.75);
    }

    .showcase-center {
        width: 140px;
        height: 140px;
    }

    .showcase-center::before {
        width: 180px;
        height: 180px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .visual-grid {
        max-width: 300px;
    }

    .grid-item {
        width: 130px;
        height: 130px;
    }

    .process-timeline::before {
        display: none;
    }

    .logo-services,
    .logo-process,
    .logo-why,
    .logo-faq,
    .logo-cta {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .hero-stats .number {
        font-size: 1.6rem;
    }

    .package-card {
        padding: 35px 28px;
    }

    .cta-box {
        padding: 50px 35px;
    }

    .cta-box h3 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .faq-q {
        padding: 20px 24px;
    }

    .faq-a p {
        padding: 0 24px 24px;
    }
}