/* =============================================
   Acil Akü Elementor Widget Styles
   ============================================= */

/* === GENEL === */
.aku-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === HERO === */
.aku-hero-section {
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.aku-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .aku-hero-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.aku-hero-left {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .aku-hero-left {
        grid-column: span 6;
    }
}

.aku-glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.aku-hero-card {
    padding: 2rem;
    border-radius: 40px;
    max-width: 560px;
}

@media (min-width: 768px) {
    .aku-hero-card {
        padding: 3rem;
    }
}

.aku-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .aku-hero-title {
        font-size: 2.25rem;
    }
}

.aku-hero-desc {
    color: #475569;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .aku-hero-desc {
        font-size: 1rem;
    }
}

.aku-hero-btn {
    display: inline-block;
    background-color: #0f172a;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.aku-hero-btn:hover {
    background-color: #dc2626;
    color: #fff;
}

.aku-hero-right {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .aku-hero-right {
        grid-column: span 6;
    }
}

.aku-float-action-card {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.aku-float-action-card i {
    font-size: 24px;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.aku-float-action-card:hover {
    background: #ffc114;
    color: #000;
    transform: scale(1.08) translateY(-5px);
    border-color: #ffc114;
    box-shadow: 0 20px 40px rgba(255, 193, 20, 0.3);
}

.aku-float-action-card:hover i {
    transform: rotate(15deg);
}

/* === ÖZELLİKLER BANDI === */
.aku-features-section {
    padding: 3rem 0;
    border-bottom: 1px solid #f8fafc;
    background: #fff;
}

.aku-features-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.aku-features-dot {
    width: 10px;
    height: 10px;
    background-color: #ec4899;
    border-radius: 50%;
    flex-shrink: 0;
}

.aku-features-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    margin: 0;
}

.aku-features-highlight {
    color: #dc2626;
    font-weight: 700;
}

.aku-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .aku-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aku-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aku-feature-item {
    border-radius: 999px;
    border: 1px solid #f1f5f9;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(248, 250, 252, 0.5);
    transition: all 0.2s ease;
}

.aku-feature-icon {
    color: #94a3b8;
    font-size: 1rem;
    flex-shrink: 0;
}

.aku-feature-divider {
    width: 1px;
    height: 24px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.aku-feature-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.aku-feature-desc {
    font-size: 10px;
    color: #94a3b8;
    margin: 0;
}

/* === HAKKIMIZDA === */
.aku-about-section {
    padding: 6rem 0;
    background: #fff;
}

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

@media (min-width: 1024px) {
    .aku-about-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.aku-about-left {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .aku-about-left {
        grid-column: span 6;
    }
}

.aku-about-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 999px;
    background: #f8fafc;
    color: #ffc114;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    border: 1px solid #f1f5f9;
}

.aku-about-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #020617;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .aku-about-title {
        font-size: 3rem;
    }
}

.aku-about-highlight {
    color: #ffc114;
}

.aku-about-desc {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .aku-about-desc {
        font-size: 1rem;
    }
}

.aku-about-desc p {
    margin: 0;
}

.aku-about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.aku-about-stat-number {
    font-size: 1.875rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.aku-about-stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.aku-about-right {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .aku-about-right {
        grid-column: span 6;
    }
}

.aku-about-image-frame {
    position: relative;
    padding: 20px;
}

.aku-about-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 70%;
    border-top: 4px solid #ffc114;
    border-right: 4px solid #ffc114;
    z-index: 0;
    border-radius: 0 40px 0 0;
}

.aku-about-image {
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.aku-about-quote-box {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: #ffc114;
    color: #020617;
    padding: 2rem;
    border-radius: 30px;
    z-index: 20;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .aku-about-quote-box {
        display: block;
    }
}

.aku-about-quote-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    display: block;
}

.aku-about-quote-text {
    font-weight: 700;
    font-style: italic;
    font-size: 0.875rem;
    line-height: 1.3;
    margin: 0;
}

/* === HİZMETLER === */
.aku-services-section {
    padding: 6rem 0;
    background: #fff;
}

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

@media (min-width: 1024px) {
    .aku-services-grid {
        grid-template-columns: 5fr 7fr;
    }
}

.aku-services-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0f172a;
}

@media (min-width: 768px) {
    .aku-services-title {
        font-size: 3rem;
    }
}

.aku-services-highlight {
    color: #ffc114;
}

.aku-services-desc {
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .aku-services-desc {
        font-size: 1rem;
    }
}

.aku-services-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffc114;
    color: #0f172a;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(255, 193, 20, 0.2);
}

.aku-services-cta:hover {
    background-color: #000;
    color: #fff;
}

.aku-services-cta:hover i {
    transform: rotate(12deg);
}

.aku-services-cta i {
    transition: transform 0.3s ease;
}

.aku-services-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.aku-minimal-service-item {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 2rem;
    transition: all 0.3s ease;
}

.aku-minimal-service-item:hover {
    border-color: #ffc114;
}

.aku-no-border {
    border-bottom: none;
}

.aku-service-number {
    font-size: 1.875rem;
    font-weight: 900;
    color: #f1f5f9;
    flex-shrink: 0;
}

.aku-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: #0f172a;
}

.aku-service-line {
    display: inline-block;
    margin-left: 0.75rem;
    width: 32px;
    height: 1px;
    background-color: #ffc114;
}

.aku-service-desc {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 768px) {
    .aku-service-desc {
        font-size: 1rem;
    }
}

/* === SORUMLULUK === */
.aku-resp-section {
    width: 100%;
    background-color: #020617;
    overflow: hidden;
    position: relative;
    min-height: 650px;
}

.aku-resp-image-area {
    position: relative;
    height: 450px;
    z-index: 0;
}

@media (min-width: 1024px) {
    .aku-resp-image-area {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
    }
}

.aku-resp-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.5);
}

.aku-resp-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #020617, rgba(2, 6, 23, 0.2), transparent);
}

.aku-resp-badge {
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.aku-resp-badge-icon {
    font-size: 1.875rem;
    color: #ffc114;
}

.aku-resp-cert {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.aku-resp-cert-info {
    text-align: right;
}

.aku-resp-cert-label {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 4px;
}

.aku-resp-cert-text {
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
}

.aku-resp-cert-line {
    width: 48px;
    height: 1px;
    background-color: #ffc114;
}

.aku-resp-container {
    position: relative;
    z-index: 10;
}

.aku-resp-content {
    display: flex;
    flex-direction: column;
    min-height: 650px;
}

@media (min-width: 1024px) {
    .aku-resp-content {
        flex-direction: row;
    }
}

.aku-resp-content-inner {
    width: 100%;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
}

@media (min-width: 1024px) {
    .aku-resp-content-inner {
        width: 50%;
    }
}

.aku-resp-section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.aku-resp-section-label span {
    font-size: 10px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
}

.aku-resp-label-line {
    height: 1px;
    width: 48px;
    background-color: #1e293b;
}

.aku-resp-sub-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffc114;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.aku-resp-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .aku-resp-title {
        font-size: 3.75rem;
    }
}

.aku-resp-title-underline {
    position: relative;
    display: inline-block;
}

.aku-underline-svg {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 12px;
    z-index: 1;
    color: #ffc114;
}

.aku-resp-desc {
    margin-bottom: 3rem;
    margin-left: 1rem;
}

@media (min-width: 768px) {
    .aku-resp-desc {
        margin-left: 3rem;
    }
}

.aku-resp-desc p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 768px) {
    .aku-resp-desc p {
        font-size: 1rem;
    }
}

.aku-resp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #020617;
    padding: 1.25rem 3rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.5s ease;
    width: fit-content;
}

.aku-resp-cta:hover {
    background-color: #ffc114;
    color: #020617;
}

/* === MARKALAR === */
.aku-brands-section {
    padding: 6rem 0;
    background: #fff;
    border-top: 1px solid #f8fafc;
}

.aku-brands-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .aku-brands-header {
        flex-direction: row;
        align-items: center;
    }
}

.aku-brands-header-left {
    max-width: 42rem;
}

.aku-brands-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: #0f172a;
    margin-bottom: 1rem;
}

.aku-brands-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 768px) {
    .aku-brands-desc {
        font-size: 1rem;
    }
}

.aku-brands-header-pill {
    width: 128px;
    height: 32px;
    background-color: #020617;
    border-radius: 999px;
    display: none;
}

@media (min-width: 768px) {
    .aku-brands-header-pill {
        display: block;
    }
}

.aku-brand-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.aku-brand-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: akuBrandScroll 40s linear infinite;
}

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

.aku-brand-item {
    padding: 0 40px;
    flex-shrink: 0;
}

.aku-brand-item img {
    height: 45px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.aku-brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.aku-brand-text {
    font-size: 1.875rem;
    font-weight: 900;
    font-style: italic;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.aku-brand-item:hover .aku-brand-text {
    opacity: 1;
}

/* === BÖLGELER === */
.aku-districts-section {
    padding: 6rem 0;
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.aku-districts-header {
    text-align: center;
    margin-bottom: 4rem;
}

.aku-districts-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.4em;
    color: #dc2626;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.aku-districts-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.05em;
}

@media (min-width: 768px) {
    .aku-districts-title {
        font-size: 3rem;
    }
}

.aku-districts-highlight {
    color: #ffc114;
}

.aku-districts-divider {
    width: 64px;
    height: 4px;
    background: #e2e8f0;
    margin: 1.5rem auto 0;
    border-radius: 999px;
}

.aku-districts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .aku-districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.aku-district-card {
    background: #fff;
    padding: 2rem;
    border-radius: 32px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

@media (min-width: 768px) {
    .aku-district-card {
        padding: 2.5rem;
    }
}

.aku-district-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.aku-district-card-title-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.aku-district-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.aku-district-card-icon.aku-europe {
    background-color: #0f172a;
    color: #fff;
}

.aku-district-card-icon.aku-asia {
    background-color: #ffc114;
    color: #020617;
}

.aku-district-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.aku-district-count {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    background: #f8fafc;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}

.aku-district-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .aku-district-pills {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aku-district-pill {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    text-decoration: none;
}

.aku-district-pill:hover {
    background: #ffc114;
    border-color: #ffc114;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 20, 0.2);
}

/* === MOBİL BAR === */
.aku-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

@media (min-width: 768px) {
    .aku-mobile-bar {
        display: none;
    }
}

.aku-mobile-call,
.aku-mobile-whatsapp {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.aku-mobile-call {
    background-color: #dc2626;
    color: #fff;
}

.aku-mobile-whatsapp {
    color: #0f172a;
}
