/**
 * About Page Styles
 * Hakkımızda sayfası için özel stiller
 */

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-floating {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   HERO SECTION
   ============================================ */

.about-hero {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            ellipse at 20% 50%,
            rgba(120, 0, 255, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 20%,
            rgba(255, 0, 128, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 40% 80%,
            rgba(0, 255, 255, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 90% 90%,
            rgba(255, 255, 0, 0.15) 0%,
            transparent 40%
        );
}

.about-hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 30px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-badge i {
    width: 16px;
    height: 16px;
}

.about-hero-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 20px;
    line-height: 1.2;
}

.about-hero-word {
    color: #fcd34d;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    display: inline-block;
}

.about-hero-desc {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: white;
    margin: 0 auto;
    max-width: 750px;
}

/* ============================================
   SERVICES SECTION (Neler Sunuyoruz)
   ============================================ */

.about-services {
    padding: 50px 20px;
}

.about-services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-section-subtitle {
    font-family: "Caveat", cursive;
    font-size: 1.4rem;
    color: #64748b;
    display: block;
    margin-bottom: 8px;
}

.about-section-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.about-service-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: stretch;
}

.about-service-image {
    flex: 0 0 200px;
    border-radius: 16px;
    border: 2px dashed;
    overflow: hidden;
    min-height: 180px;
}

.about-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dynamic service images - neutral style */

.about-service-cards {
    flex: 1;
    display: flex;
    gap: 16px;
}

.about-service-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: #f1f5f9;
}

.about-service-card-icon i {
    width: 22px;
    height: 22px;
    color: #475569;
}

.about-service-card h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: #1e293b;
    margin: 0 0 6px;
}

.about-service-card p {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.about-service-banner {
    height: 80px;
    margin-bottom: 16px;
    border-radius: 16px;
    border: 2px dashed #86efac;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    overflow: hidden;
}

.about-service-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-service-cards-wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-service-cards-wrap .about-service-card {
    min-width: 200px;
}

/* ============================================
   SLOGAN SECTIONS
   ============================================ */

.about-slogan {
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.about-slogan-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-slogan-text {
    font-family: "Caveat", cursive;
    font-size: 3rem;
    font-weight: bold;
}

.about-slogan-highlight {
    position: relative;
    display: inline;
}

.about-slogan-highlight-text {
    position: relative;
    z-index: 2;
}

.about-slogan-highlight-bg {
    position: absolute;
    bottom: 4px;
    left: -10px;
    right: -10px;
    height: 14px;
    z-index: 1;
    border-radius: 6px;
}

.about-slogan-icon {
    position: absolute;
    width: 28px;
    height: 28px;
}

/* Slogan Variants */
.about-slogan.yellow {
    background: linear-gradient(
        135deg,
        rgba(254, 243, 199, 0.2) 0%,
        rgba(253, 230, 138, 0.15) 50%,
        rgba(252, 211, 77, 0.1) 100%
    );
}
.about-slogan.yellow .about-slogan-text {
    color: #78350f;
}
.about-slogan.yellow .about-slogan-highlight-bg {
    background: rgba(245, 158, 11, 0.2);
    transform: rotate(-1deg);
}
.about-slogan.yellow .about-slogan-icon {
    color: rgba(245, 158, 11, 0.15);
}

.about-slogan.green {
    background: linear-gradient(
        135deg,
        rgba(209, 250, 229, 0.2) 0%,
        rgba(167, 243, 208, 0.15) 50%,
        rgba(110, 231, 183, 0.1) 100%
    );
}
.about-slogan.green .about-slogan-text {
    color: #064e3b;
}
.about-slogan.green .about-slogan-highlight-bg {
    background: rgba(5, 150, 105, 0.2);
    transform: rotate(1deg);
}
.about-slogan.green .about-slogan-icon {
    color: rgba(5, 150, 105, 0.15);
}

.about-slogan.blue {
    background: linear-gradient(
        135deg,
        rgba(219, 234, 254, 0.2) 0%,
        rgba(191, 219, 254, 0.15) 50%,
        rgba(147, 197, 253, 0.1) 100%
    );
}
.about-slogan.blue .about-slogan-text {
    color: #1e3a8a;
}
.about-slogan.blue .about-slogan-highlight-bg {
    background: rgba(37, 99, 235, 0.2);
    transform: rotate(-1deg);
}
.about-slogan.blue .about-slogan-icon {
    color: rgba(37, 99, 235, 0.15);
}

.about-slogan.purple {
    background: linear-gradient(
        135deg,
        rgba(237, 233, 254, 0.2) 0%,
        rgba(221, 214, 254, 0.15) 50%,
        rgba(196, 181, 253, 0.1) 100%
    );
}
.about-slogan.purple .about-slogan-text {
    color: #4c1d95;
}
.about-slogan.purple .about-slogan-highlight-bg {
    background: rgba(124, 58, 237, 0.2);
    transform: rotate(1deg);
}
.about-slogan.purple .about-slogan-icon {
    color: rgba(124, 58, 237, 0.15);
}

.about-slogan.pink {
    background: linear-gradient(
        135deg,
        rgba(252, 231, 243, 0.2) 0%,
        rgba(251, 207, 232, 0.15) 50%,
        rgba(249, 168, 212, 0.1) 100%
    );
}
.about-slogan.pink .about-slogan-text {
    color: #9d174d;
}
.about-slogan.pink .about-slogan-highlight-bg {
    background: rgba(219, 39, 119, 0.2);
    transform: rotate(-1deg);
}
.about-slogan.pink .about-slogan-icon {
    color: rgba(219, 39, 119, 0.15);
}

.about-slogan.teal {
    background: linear-gradient(
        135deg,
        rgba(204, 251, 241, 0.2) 0%,
        rgba(153, 246, 228, 0.15) 50%,
        rgba(94, 234, 212, 0.1) 100%
    );
}
.about-slogan.teal .about-slogan-text {
    color: #115e59;
}
.about-slogan.teal .about-slogan-highlight-bg {
    background: rgba(20, 184, 166, 0.2);
    transform: rotate(-0.5deg);
}
.about-slogan.teal .about-slogan-icon {
    color: rgba(20, 184, 166, 0.15);
}

/* ============================================
   SLIDER SECTION
   ============================================ */

/* ============================================
   PROJECTS SLIDER (4-Card Layout)
   ============================================ */

.about-projects-section {
    padding: 60px 20px;
    background: #f8fafc;
    margin: 0 auto;
}

.about-projects-header {
    margin-bottom: 30px;
}

.about-projects-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.about-projects-nav {
    display: flex;
    gap: 12px;
}

.about-projects-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-projects-btn:hover {
    background: #1e293b;
    border-color: #1e293b;
    color: white;
}

.about-projects-btn i {
    width: 24px;
    height: 24px;
}

.about-projects-swiper {
    overflow: hidden;
    padding: 10px 0;
}

.about-projects-swiper .swiper-slide {
    height: auto;
}

.about-project-card {
    display: block;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.about-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-project-image {
    width: 200px;
    overflow: hidden;
    border-radius: 20px;
}

.about-project-image img {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-project-card:hover .about-project-image img {
    transform: scale(1.08);
}

.about-project-content {
    padding: 20px;
}

.about-project-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.4;
}

.about-project-desc {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .about-projects-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .about-projects-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ============================================
   PROJECTS SECTION (MATA ile Çalışmak)
   ============================================ */

.about-projects {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-projects-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-projects-header .about-section-title {
    font-size: 2.8rem;
}

.about-projects-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    margin: 16px auto 0;
    border-radius: 2px;
}

.about-projects-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.about-projects-label-line {
    height: 1px;
    flex: 1;
    max-width: 100px;
}

.about-projects-label-line.left {
    background: linear-gradient(90deg, transparent, #e2e8f0);
}

.about-projects-label-line.right {
    background: linear-gradient(90deg, #e2e8f0, transparent);
}

.about-projects-label span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 8px 20px;
    border-radius: 20px;
}

.about-project-card {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 40px;
    background: white;
    border-radius: 24px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.about-project-card.reverse {
    flex-direction: row-reverse;
}

.about-project-logo {
    flex: 0 0 280px;
    height: 200px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-project-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-project-logo-placeholder {
    text-align: center;
    color: #94a3b8;
}

.about-project-logo-placeholder i {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto 10px;
}

.about-project-logo-placeholder span {
    font-size: 12px;
}

.about-project-content {
    flex: 1;
}

.about-project-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-project-badge i {
    width: 14px;
    height: 14px;
}

.about-project-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
}

.about-project-client {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #64748b;
    margin: 0 0 16px;
}

.about-project-desc {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin: 0 0 20px;
}

.about-project-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-project-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 10px 16px;
    border-radius: 12px;
}

.about-project-feature i {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.about-project-feature span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

/* ============================================
   STATS SECTION (Sayılarla MATA)
   ============================================ */

.about-stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    position: relative;
    overflow: hidden;
    display: block !important;
}

.about-stats-bg-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.06);
}

.about-stats-bg-shape {
    position: absolute;
}

.about-stats-bg-shape.circle {
    width: 100px;
    height: 100px;
    border: 2px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.about-stats-bg-shape.square {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transform: rotate(45deg);
}

.about-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-stats-header .about-section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.about-stats-header .about-section-title {
    color: white;
}

.about-stats-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    min-width: 180px;
    height: 150px;
}

.about-stat-number {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
}

.about-stat-number.yellow {
    color: #fbbf24;
}
.about-stat-number.green {
    color: #34d399;
}
.about-stat-number.blue {
    color: #60a5fa;
}
.about-stat-number.pink {
    color: #f472b6;
}

.about-stat-label {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   REFERENCES SECTION (Sektörlerden Referanslar)
   ============================================ */

.about-references {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-references-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.about-ref-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-ref-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-ref-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.about-ref-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: #f1f5f9;
}

.about-ref-icon i {
    width: 36px;
    height: 36px;
    color: #475569;
}

.about-ref-card h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1e293b;
    margin: 0 0 8px;
}

.about-ref-card p {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* ============================================
   STORY SECTION (MATA'nın Hikayesi)
   ============================================ */

.about-story {
    padding: 80px 20px;
    background: white;
}

.about-story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-story-left {
    text-align: center;
}

.about-story-avatar {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e2e8f0;
    position: relative;
}

.about-story-avatar-ring {
    position: absolute;
    inset: -12px;
    border: 2px dashed #cbd5e1;
    border-radius: 50%;
}

.about-story-avatar i {
    width: 80px;
    height: 80px;
    color: #94a3b8;
}

.about-story-brand {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
}

.about-story-tagline {
    font-family: "Caveat", cursive;
    font-size: 2rem;
    color: #f59e0b;
    margin: 0;
}

.about-story-right .about-section-title {
    margin-bottom: 16px;
}

.about-story-intro {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0 0 40px;
}

.about-story-intro strong {
    color: #1e293b;
}

.about-mv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-mv-card {
    background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
}

.about-mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #f1f5f9;
}

.about-mv-icon i {
    width: 28px;
    height: 28px;
    color: #475569;
}

.about-mv-card h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #1e293b;
    margin: 0 0 12px;
}

.about-mv-card p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.about-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2d4a6f 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.06);
}

.about-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-cta-eyebrow {
    font-family: "Caveat", cursive;
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

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

.about-cta-highlight-text {
    position: relative;
    z-index: 2;
}

.about-cta-highlight-bg {
    position: absolute;
    bottom: 0;
    left: -10px;
    right: -10px;
    height: 12px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    z-index: 1;
    border-radius: 6px;
    transform: rotate(-2deg);
    opacity: 0.6;
}

.about-cta-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
}

.about-cta-desc {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 30px;
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-btn i {
    width: 20px;
    height: 20px;
}

.about-cta-btn.primary {
    background: white;
    color: #1e3a5f;
}

.about-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.about-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   MINI FOOTER
   ============================================ */

.about-mini-footer {
    background: #1e293b;
    padding: 40px 20px;
}

.about-mini-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-mini-footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-mini-footer-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 95, 0.3);
}

.about-mini-footer-icon i {
    width: 20px;
    height: 20px;
    color: #94a3b8;
}

.about-mini-footer-text strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    display: block;
}

.about-mini-footer-text span {
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
    .about-ref-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-ref-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-mv-cards {
        grid-template-columns: 1fr;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-slogan-text {
        font-size: 2rem;
    }

    .about-stats-grid {
        gap: 16px;
    }

    .about-stat-card {
        min-width: 140px;
        padding: 20px 24px;
    }

    .about-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-ref-grid {
        grid-template-columns: 1fr;
    }

    .about-project-card {
        flex-direction: column;
    }

    .about-project-card.reverse {
        flex-direction: column;
    }

    .about-project-logo {
        flex: none;
        width: 100%;
        height: 150px;
    }

    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-slogan-text {
        font-size: 1.6rem;
        white-space: normal;
    }

    .about-slider-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .about-slider-icon-box {
        margin: 0 auto 20px;
    }

    .about-slider-tags {
        justify-content: center;
    }

    .about-slider-item {
        padding: 0 60px;
    }

    .about-service-row {
        flex-direction: column;
    }

    .about-service-image {
        flex: none;
        width: 100%;
        height: 120px;
    }

    .about-service-cards {
        flex-direction: column;
    }

    .about-stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .about-stat-card {
        width: 100%;
        max-width: 280px;
    }

    .about-story-left {
        margin-bottom: 40px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .about-mini-footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.5rem;
    }

    .about-slogan-text {
        font-size: 1.4rem;
    }

    .about-section-title {
        font-size: 1.6rem;
    }

    .about-slider-item {
        padding: 0 40px;
    }

    .about-slider-btn {
        width: 44px;
        height: 44px;
    }

    .about-slider-btn i {
        width: 20px;
        height: 20px;
    }

    .about-slider-btn.prev {
        left: 10px;
    }
    .about-slider-btn.next {
        right: 10px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.sc-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sc-cta-slogan {
    font-family: var(--sc-font-handwritten);
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.sc-cta-slogan-highlight {
    position: relative;
    display: inline-block;
}

.sc-cta-slogan-highlight-text {
    position: relative;
    z-index: 2;
}

.sc-cta-slogan-underline {
    position: absolute;
    bottom: 0;
    left: -10px;
    right: -10px;
    height: 12px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    z-index: 1;
    border-radius: 6px;
    transform: rotate(-2deg);
    opacity: 0.6;
}

.sc-cta-title {
    font-family: var(--sc-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: white !important;
    margin: 0 0 16px;
}

.sc-cta-desc {
    font-family: var(--sc-font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 30px;
}

.sc-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-family: var(--sc-font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sc-cta-btn i {
    font-size: 20px;
}

.sc-cta-btn.primary {
    background: white;
    color: #1e3a5f;
}

.sc-cta-btn.primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.sc-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sc-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* CTA Floating Icons */
.sc-cta-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.06);
}

/* CTA Decorative Shapes */
.sc-cta-shape {
    position: absolute;
}

.sc-cta-shape.circle {
    width: 100px;
    height: 100px;
    border: 2px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.sc-cta-shape.square {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transform: rotate(45deg);
}

.sc-cta-shape.box {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}
