/* Modern About Hero Section - NetGigabit */
.modern-about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('/assets/img/bg/inner-hero1-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: white;
}

.modern-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="white" fill-opacity="0.05"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="80" r="2"/><circle cx="40" cy="60" r="1"/><circle cx="60" cy="40" r="1"/></g></svg>');
    z-index: 1;
}

.modern-about-hero > .container {
    position: relative;
    z-index: 2;
}

/* Hero Content */
.about-hero-content {
    position: relative;
    z-index: 3;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-badge i {
    animation: pulse 2s infinite;
}

.about-hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
}

.about-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Breadcrumbs */
.modern-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.modern-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.modern-breadcrumbs a:hover {
    color: white;
}

.modern-breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.modern-breadcrumbs .current {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* Hero Image */
.about-hero-image {
    position: relative;
    z-index: 2;
}

.about-hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Animated Shapes */
.about-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.about-hero-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.about-hero-shape.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.about-hero-shape.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.about-hero-shape.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Stats Cards */
.about-stats {
    margin-top: 40px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    display: block;
}

.about-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-about-hero {
        min-height: 50vh;
        text-align: center;
    }
    
    .about-hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .modern-about-hero {
        min-height: 40vh;
        padding: 40px 0;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .about-hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-stat-card {
        padding: 20px 16px;
    }
    
    .about-stat-number {
        font-size: 1.5rem;
    }
    
    .about-stat-label {
        font-size: 13px;
    }
}

/* Animation for stats */
@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-stat-card {
    animation: countUp 0.6s ease-out forwards;
}

.about-stat-card:nth-child(1) { animation-delay: 0.1s; }
.about-stat-card:nth-child(2) { animation-delay: 0.2s; }
.about-stat-card:nth-child(3) { animation-delay: 0.3s; }
.about-stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Modern About Section */
.modern-about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.modern-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="%23e60012" fill-opacity="0.02"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="80" r="2"/><circle cx="40" cy="60" r="1"/><circle cx="60" cy="40" r="1"/></g></svg>');
    z-index: 1;
}

.modern-about-section > .container {
    position: relative;
    z-index: 2;
}

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

.about-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--ng-primary-light, rgba(91, 131, 205, 0.1)), var(--ng-secondary-light, rgba(194, 128, 191, 0.1)));
    color: var(--ng-primary-start, #5b83cd);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(230, 0, 18, 0.2);
}

.about-section-badge i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

.about-section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    margin-bottom: 24px;
}

.about-title-highlight {
    background: linear-gradient(135deg, var(--ng-primary-start, #5b83cd) 0%, var(--ng-primary-end, #c280bf) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Modern Progress Cards */
.modern-progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.modern-progress-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(230, 0, 18, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.modern-progress-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--ng-primary-start, #5b83cd) 0%, var(--ng-primary-end, #c280bf) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-progress-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(230, 0, 18, 0.25);
}

.modern-progress-card:hover::before {
    opacity: 1;
}

/* Modern Circular Progress */
.modern-circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}

.progress-ring {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 8;
}

.progress-ring-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease-in-out;
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 800;
    color: var(--ng-primary-start, #5b83cd);
    line-height: 1;
}

.progress-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.progress-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Action Button */
.about-section-action {
    text-align: center;
    margin-top: 60px;
}

.modern-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--ng-primary-start, #5b83cd) 0%, var(--ng-primary-end, #c280bf) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px var(--ng-shadow-dark, rgba(91, 131, 205, 0.3));
    position: relative;
    overflow: hidden;
}

.modern-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-action-btn:hover::before {
    left: 100%;
}

.modern-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--ng-shadow-dark, rgba(91, 131, 205, 0.3));
    color: white;
}

.modern-action-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.modern-action-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-about-section {
        padding: 80px 0;
    }
    
    .about-section-header {
        margin-bottom: 60px;
    }
    
    .modern-progress-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .modern-progress-card {
        padding: 30px 20px;
    }
    
    .modern-circular-progress {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .progress-ring {
        width: 100px;
        height: 100px;
    }
    
    .progress-percentage {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .modern-about-section {
        padding: 60px 0;
    }
    
    .modern-progress-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modern-progress-card {
        padding: 24px 16px;
    }
    
    .modern-circular-progress {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }
    
    .progress-ring {
        width: 80px;
        height: 80px;
    }
    
    .progress-percentage {
        font-size: 20px;
    }
    
    .progress-label {
        font-size: 14px;
    }
    
    .progress-description {
        font-size: 13px;
    }
    
    .modern-action-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Progress Animation Trigger */
.modern-progress-card.animate .progress-ring-fill {
    stroke-dashoffset: var(--target-offset);
}

/* Modern Choose Section - "Neden Biz?" */
.modern-choose-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--ng-primary-start, #5b83cd) 0%, var(--ng-primary-end, #c280bf) 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.modern-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="white" fill-opacity="0.05"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="80" r="2"/><circle cx="40" cy="60" r="1"/><circle cx="60" cy="40" r="1"/></g></svg>');
    z-index: 1;
}

.modern-choose-section > .container {
    position: relative;
    z-index: 2;
}

.choose-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.choose-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.choose-section-badge i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

.choose-section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

.choose-section-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Modern Choose Cards */
.modern-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.modern-choose-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-choose-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modern-choose-card:hover::before {
    opacity: 1;
}

.choose-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.choose-card-icon i {
    font-size: 36px;
    color: white;
}

.modern-choose-card:hover .choose-card-icon {
    background: white;
    transform: scale(1.1);
}

.modern-choose-card:hover .choose-card-icon i {
    color: var(--ng-primary-start, #5b83cd);
}

.choose-card-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.choose-card-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Modern Features Section */
.modern-features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.modern-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="%23e60012" fill-opacity="0.02"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="80" r="2"/><circle cx="40" cy="60" r="1"/><circle cx="60" cy="40" r="1"/></g></svg>');
    z-index: 1;
}

.modern-features-section > .container {
    position: relative;
    z-index: 2;
}

.features-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--ng-primary-light, rgba(91, 131, 205, 0.1)), var(--ng-secondary-light, rgba(194, 128, 191, 0.1)));
    color: var(--ng-primary-start, #5b83cd);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(230, 0, 18, 0.2);
}

.features-section-badge i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

.features-section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    margin-bottom: 24px;
}

.features-title-highlight {
    background: linear-gradient(135deg, var(--ng-primary-start, #5b83cd) 0%, var(--ng-primary-end, #c280bf) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Modern Features Grid */
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.modern-features-list {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(230, 0, 18, 0.05);
    transition: all 0.3s ease;
}

.modern-features-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px var(--ng-shadow-medium, rgba(91, 131, 205, 0.2));
}

.modern-features-list h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modern-features-list h4 i {
    color: var(--ng-primary-start, #5b83cd);
    font-size: 24px;
}

.modern-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.modern-feature-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.modern-feature-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--ng-primary-start, #5b83cd) 0%, var(--ng-primary-end, #c280bf) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modern-feature-check i {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.modern-feature-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

/* Features Action */
.features-section-action {
    text-align: center;
}

.modern-features-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--ng-primary-start, #5b83cd) 0%, var(--ng-primary-end, #c280bf) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px var(--ng-shadow-dark, rgba(91, 131, 205, 0.3));
    position: relative;
    overflow: hidden;
}

.modern-features-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-features-btn:hover::before {
    left: 100%;
}

.modern-features-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--ng-shadow-dark, rgba(91, 131, 205, 0.3));
    color: white;
}

.modern-features-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.modern-features-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-choose-section,
    .modern-features-section {
        padding: 80px 0;
    }
    
    .choose-section-header,
    .features-section-header {
        margin-bottom: 60px;
    }
    
    .modern-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .modern-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .modern-choose-section,
    .modern-features-section {
        padding: 60px 0;
    }
    
    .modern-choose-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modern-choose-card,
    .modern-features-list {
        padding: 30px 20px;
    }
    
    .choose-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .choose-card-icon i {
        font-size: 28px;
    }
    
    .modern-features-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}
