/* Modern Web Agency Design - Custom Styles */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* CSS Variables - Modern Color Palette */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --dark-bg: #1e293b;
    --dark-secondary: #334155;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-hero: linear-gradient(135deg, #2563eb 0%, #8b5cf6 50%, #ec4899 100%);
    --shadow-sm: 0 2px 4px rgba(37, 99, 235, 0.08);
    --shadow-md: 0 4px 6px rgba(37, 99, 235, 0.12);
    --shadow-lg: 0 10px 25px rgba(37, 99, 235, 0.15);
    --shadow-xl: 0 20px 40px rgba(37, 99, 235, 0.2);
    --border-radius: 12px;
    --border-radius-sharp: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Modern Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 41, 59, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    opacity: 0.9;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-sharp);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(37, 99, 235, 0.1);
}

/* Modern Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-sharp);
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

.btn-light {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--white);
}

.btn-light:hover {
    box-shadow: var(--shadow-lg);
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: var(--white);
}

.btn-outline-light {
    background: transparent !important;
    color: var(--white) !important;
    border: 2px solid var(--white);
    box-shadow: none;
}

.btn-outline-light:hover {
    background: var(--white) !important;
    color: var(--primary-dark) !important;
    border-color: var(--white);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

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

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

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

.hero-section h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.hero-section .lead {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.75rem;
    font-weight: 400;
}

/* Modern Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.sharp-card {
    border-radius: var(--border-radius-sharp) !important;
    border: 2px solid #e2e8f0;
}

.card:hover {
    box-shadow: var(--shadow-xl);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.85rem;
}

.card-footer {
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
}

/* Price Display */
.price-tag {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.75rem 0;
}

/* Modern Forms */
.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-sharp);
    padding: 0.75rem 1.25rem;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Alerts */
.alert {
    border-radius: var(--border-radius-sharp);
    border: none;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 350px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
}

.alert-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0;
    border-top: 3px solid var(--primary-color);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sharp);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-contact span {
    line-height: 1.6;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.payment-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.payment-icon {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.75);
    opacity: 0.9;
    transition: var(--transition);
}

.payment-icon:hover {
    opacity: 1;
    color: var(--primary-light);
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
        margin-top: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Background Variations */
.bg-light {
    background: var(--bg-light) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

/* Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-sharp);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: var(--border-radius-sharp);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

/* Badge */
.badge {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sharp);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Content Images */
.content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sharp);
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

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

    .card-footer {
        flex-direction: column;
    }

    .card-footer .btn {
        width: 100%;
    }

    section {
        padding: 60px 0;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    /* Modern Mobile Menu - Full Screen Overlay */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
        margin: 0;
        padding: 80px 1.5rem 2rem;
        z-index: 9999;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
        border: none;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        display: block !important;
    }

    /* Mobile Menu Overlay Background */
    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .navbar-collapse.show::before {
        opacity: 1;
        pointer-events: all;
    }

    .navbar-nav {
        gap: 0.75rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .navbar-nav .nav-item {
        margin: 0;
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInLeft 0.4s ease forwards;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) {
        animation-delay: 0.15s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) {
        animation-delay: 0.2s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(4) {
        animation-delay: 0.25s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(5) {
        animation-delay: 0.3s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(6) {
        animation-delay: 0.35s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(7) {
        animation-delay: 0.4s;
    }

    .navbar-nav .nav-link {
        padding: 1.125rem 1.5rem !important;
        margin: 0 !important;
        border-radius: 14px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1rem;
        color: var(--text-primary) !important;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(37, 99, 235, 0.1);
        position: relative;
        overflow: hidden;
    }

    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        transition: left 0.3s ease;
        z-index: -1;
    }

    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link:focus::before {
        left: 0;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: white !important;
        transform: translateX(8px);
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
        border-color: transparent;
    }

    .navbar-nav .nav-link i {
        display: none;
    }

    .navbar-nav .btn {
        width: 100%;
        margin: 1rem 0 0 0 !important;
        justify-content: center;
        padding: 1rem !important;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 14px;
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    }

    /* Modern Menu Toggle Button */
    .navbar-toggler {
        border: none !important;
        padding: 0.5rem;
        background: transparent;
        transition: all 0.3s ease;
        position: relative;
        z-index: 10000;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
        outline: none;
    }

    .navbar-toggler-icon {
        width: 28px;
        height: 28px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        display: block;
        height: 3px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    .navbar-toggler-icon {
        background-image: none !important;
    }

    .navbar-toggler-icon::before {
        transform: translateY(0) rotate(0);
    }

    .navbar-toggler-icon::after {
        transform: translateY(0) rotate(0);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: translateY(10px) rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: translateY(-10px) rotate(-45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: none;
    }

    /* Close button for mobile menu */
    .mobile-menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
        background: var(--gradient-primary);
        border: none;
        border-radius: 12px;
        color: white;
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10001;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

    .mobile-menu-close:hover {
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    }

    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.85rem;
    }

    body {
        font-size: 13px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Legal Pages Styles */
.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content table {
    margin: 2rem 0;
}

.legal-content table th {
    background: var(--bg-light);
    font-weight: 600;
    padding: 1rem;
}

.legal-content table td {
    padding: 0.75rem 1rem;
    border-top: 1px solid #e2e8f0;
}

.legal-content .alert {
    position: relative;
    margin-top: 2rem;
}

/* Stats Section */
.stats-section {
    background: #ffffff !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-header {
    position: relative;
    z-index: 1;
}

.stat-card-modern {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.stat-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
}

.stat-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card-modern:hover .stat-card-inner::before {
    transform: scaleX(1);
}

.stat-card-modern:hover .stat-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
}

.stat-card-1 .stat-card-inner::before {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.stat-card-2 .stat-card-inner::before {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.stat-card-3 .stat-card-inner::before {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.stat-card-4 .stat-card-inner::before {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.stat-icon-modern {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
    position: relative;
}

.stat-card-1 .stat-icon-modern {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #2563eb;
}

.stat-card-2 .stat-icon-modern {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    color: #8b5cf6;
}

.stat-card-3 .stat-icon-modern {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    color: #f59e0b;
}

.stat-card-4 .stat-icon-modern {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
    color: #10b981;
}

.stat-card-modern:hover .stat-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 1rem 0;
    transition: var(--transition);
    line-height: 1;
}

.stat-card-1 .stat-number-modern {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-2 .stat-number-modern {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-3 .stat-number-modern {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-4 .stat-number-modern {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-modern {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin: 1rem 0 1.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.stat-progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
}

.stat-card-1 .stat-progress-bar {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.stat-card-2 .stat-progress-bar {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.stat-card-3 .stat-progress-bar {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.stat-card-4 .stat-progress-bar {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

/* Why Website Section */
.why-website-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header-left {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--border-radius-sharp);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title-left {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.problem-list,
.benefit-list {
    margin-top: 2rem;
}

.problem-item,
.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-left: 4px solid;
    border-radius: var(--border-radius-sharp);
    box-shadow: var(--shadow-sm);
}

.problem-item {
    border-left-color: #ef4444;
}

.benefit-item {
    border-left-color: #10b981;
}

.problem-item i,
.benefit-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.problem-item strong,
.benefit-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.problem-item p,
.benefit-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.solution-box {
    background: var(--white);
    padding: 3rem;
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius-sharp);
    box-shadow: var(--shadow-xl);
}

.solution-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SEO CTA Section */
.seo-cta-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    color: var(--white);
}

.seo-cta-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.seo-cta-section h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.seo-cta-section .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
}

.seo-cta-section .btn-primary {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--white);
}

.seo-cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-color) !important;
}

.seo-cta-section .btn-outline-primary {
    background: transparent !important;
    color: var(--white) !important;
    border: 2px solid var(--white) !important;
}

.seo-cta-section .btn-outline-primary:hover {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: var(--white) !important;
}

.cta-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.seo-cta-section .cta-buttons,
.seo-cta-section .cta-content .cta-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
}

.seo-cta-section .cta-buttons .btn,
.seo-cta-section .cta-buttons .btn-lg,
.seo-cta-section .cta-buttons a.btn,
.seo-cta-section .cta-content .cta-buttons .btn,
.seo-cta-section .cta-content .cta-buttons .btn-lg,
.seo-cta-section .cta-content .cta-buttons a.btn,
.cta-buttons .btn,
.cta-buttons .btn-lg,
.cta-buttons a.btn {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    width: auto !important;
    min-width: auto !important;
    max-width: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    line-height: 1 !important;
    margin: 0 !important;
    float: none !important;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-wrap: wrap !important;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }

    .cta-buttons .btn,
    .cta-buttons .btn-lg,
    .cta-buttons a.btn {
        width: 100% !important;
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-sharp);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: var(--white);
}

.feature-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.cta-visual {
    position: relative;
}

.visual-card {
    background: var(--white);
    border-radius: var(--border-radius-sharp);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.visual-header {
    background: #f1f5f9;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.visual-dots {
    display: flex;
    gap: 0.5rem;
}

.visual-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.visual-dots span:first-child {
    background: #ef4444;
}

.visual-dots span:nth-child(2) {
    background: #f59e0b;
}

.visual-dots span:nth-child(3) {
    background: #10b981;
}

.search-result {
    padding: 1.5rem;
}

.result-item {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-sharp);
    position: relative;
}

.result-item.featured {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.result-url {
    color: #10b981;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.result-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.result-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.result-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sharp);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 9px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    margin: 0;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-visual {
    position: relative;
}

.feature-card-large {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius-sharp);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.feature-card-large i {
    font-size: 6rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.feature-card-large h3 {
    color: var(--white);
    font-size: 1.5rem;
}

.features-list {
    margin-top: 2rem;
}

.feature-check-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius-sharp);
    transition: var(--transition);
}

.feature-check-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.feature-check-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 0.25rem;
}

.feature-check-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-check-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
}

.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider-container {
    position: relative;
    min-height: 350px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: translateY(30px);
    z-index: 1;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
    z-index: 2;
}

.testimonial-card-modern {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    position: relative;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.testimonial-quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.testimonial-author {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}

.author-avatar-modern {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.testimonial-author p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dots .dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-dots .dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    border-color: var(--primary-color);
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: var(--white);
}

.cta-box {
    background: var(--gradient-primary);
    padding: 4rem;
    border: none;
}

.cta-box h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.final-cta-section .btn-light {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--white);
}

.final-cta-section .btn-light:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-color) !important;
}

.final-cta-section a.text-white {
    color: var(--white) !important;
    text-decoration: underline;
}

.cta-box .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
}

.cta-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
}

.cta-benefit-item i {
    font-size: 1.25rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Hero Section Updates */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.text-gradient-white {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.hero-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-icon {
    font-size: 250px;
    color: rgba(255, 255, 255, 0.15);
    animation: float 6s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.floating-card span {
    font-size: 0.875rem;
    font-weight: 600;
}

.floating-card.card-1 {
    top: 10%;
    left: 10%;
    animation: floatCard1 8s ease-in-out infinite;
}

.floating-card.card-2 {
    top: 50%;
    right: 10%;
    animation: floatCard2 10s ease-in-out infinite;
}

.floating-card.card-3 {
    bottom: 10%;
    left: 20%;
    animation: floatCard3 7s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-15px) translateX(10px);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(20px) translateX(-10px);
    }
}

@keyframes floatCard3 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-10px) translateX(15px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.pulse-on-hover:hover {
    animation: pulse 1s ease-in-out infinite;
}

/* Nav Phone Link */
.nav-phone {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-phone:hover {
    color: var(--primary-dark) !important;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
}

.why-choose-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid #e2e8f0;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.5s;
}

.why-choose-card:hover::before {
    left: 100%;
}

.why-choose-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.why-choose-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.why-choose-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Technology Stack Section */
.tech-stack-section {
    padding: 100px 0;
    background: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.tech-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.tech-item:hover .tech-icon {
    transform: scale(1.1);
}

.tech-item span {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Services Modern Section */
.services-modern-section {
    padding: 100px 0;
    background: var(--white);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

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

.pricing-features li i {
    color: #10b981;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-cta {
    margin-top: 2rem;
}

.faq-accordion {
    margin-top: 2rem;
}

.faq-item {
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Home Blog Section */
.home-blog-section {
    padding: 100px 0;
}

.home-blog-card {
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-blog-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.home-blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--gradient-primary);
}

.home-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.home-blog-card:hover .home-blog-image img {
    transform: scale(1.1);
}

.home-blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    opacity: 0.5;
}

.home-blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.home-blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.home-blog-meta span {
    display: flex;
    align-items: center;
}

.home-blog-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    flex: 1;
}

.home-blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.home-blog-title a:hover {
    color: var(--primary-color);
}

.home-blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9rem;
    flex: 1;
}

.home-blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    margin-top: auto;
}

.home-blog-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .solution-box {
        padding: 2rem;
    }

    .section-title-left {
        font-size: 2rem;
    }

    .hero-main-icon {
        font-size: 180px;
    }

    .floating-card {
        display: none;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stat-card-inner {
        padding: 2rem 1.5rem;
    }

    .stat-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

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

    .stat-label-modern {
        font-size: 0.9rem;
    }
}

/* Services Page Styles */
.services-hero-section {
    background: var(--gradient-hero);
    padding: 100px 0 80px;
    color: var(--white);
    text-align: center;
}

.services-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin: 1.5rem 0;
}

.services-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.service-card-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.service-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--gradient-primary);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-modern:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    opacity: 0.8;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card-modern:hover .service-card-overlay {
    opacity: 1;
}

.service-card-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.service-card-link:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--white);
}

.service-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.7;
}

.service-card-footer {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.service-card-footer .btn {
    flex: 1;
    min-width: 120px;
}

.services-cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-cta-box {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
    color: var(--white);
}

.services-cta-box h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.services-cta-box .lead {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Service Detail Page */
/* Modern Service Detail Hero */
.service-detail-hero-modern {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-detail-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    z-index: 0;
}

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

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.hero-feature-badge:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.hero-feature-badge i {
    color: #10b981;
}

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

.service-hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.service-detail-hero {
    background: var(--gradient-hero);
    padding: 100px 0 60px;
    color: var(--white);
}

.service-detail-header {
    text-align: center;
}

.service-detail-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin: 1.5rem 0;
}

.service-detail-header .lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-content-modern {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-content {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.service-features-modern {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.service-features-modern h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.service-features-modern h3 i {
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius-sharp);
    border: 2px solid #e2e8f0;
    transition: var(--transition);
}

.feature-item-modern:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.feature-item-modern i {
    color: #10b981;
    font-size: 1.25rem;
}

.feature-item-modern span {
    color: var(--text-primary);
    font-weight: 500;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-cta-card {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xl);
}

.service-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.service-cta-card h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-benefits {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 2px solid #e2e8f0;
}

/* Modern Service Content Sections */
.service-intro-section {
    margin-bottom: 4rem;
}

.service-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.service-section-title i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.service-content-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.service-content-text p {
    margin-bottom: 1.25rem;
}

.service-content-text h3,
.service-content-text h4 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-features-section {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.service-feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.service-feature-card span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Process Steps */
.service-process-section {
    margin-bottom: 4rem;
}

.process-steps-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.process-step-item::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 4.5rem;
    bottom: -1.5rem;
    width: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.process-step-item:last-child::before {
    display: none;
}

.process-step-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateX(5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Modern Sidebar */
.service-sidebar-modern {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-pricing-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pricing-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.pricing-content {
    padding: 2rem;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.pricing-item i {
    font-size: 1.125rem;
}

.pricing-note {
    padding: 1rem;
    background: #f8f9fc;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-note i {
    color: var(--primary-color);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-note small {
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-cta-card-modern {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
}

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.service-cta-card-modern h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-cta-card-modern p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-benefits-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-benefits-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.service-benefits-card h4 i {
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.benefits-list li i {
    color: #10b981;
    font-size: 1.125rem;
}

.service-benefits h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.service-benefits h4 i {
    color: var(--primary-color);
}

.service-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    border-bottom: 1px solid #e2e8f0;
}

.service-benefits li:last-child {
    border-bottom: none;
}

.service-benefits li i {
    color: #10b981;
}

.service-cta-bottom {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-cta-bottom-box {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
    color: var(--white);
}

.service-cta-bottom-box h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-cta-bottom-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Services Alternating Sections */
.service-alt-section {
    padding: 80px 0;
    background: var(--white);
}

.service-alt-section:nth-child(even) {
    background: var(--bg-light);
}

.service-alt-content {
    padding: 1rem 0;
}

.service-alt-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-alt-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 1rem 0;
    color: var(--text-primary);
}

.service-alt-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-alt-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.service-alt-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sharp);
    border: 1px solid #e2e8f0;
    color: var(--text-secondary);
    transition: var(--transition);
}

.service-alt-item i {
    color: #10b981;
}

.service-alt-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-alt-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-alt-actions .btn {
    flex: 0 0 auto;
    min-width: 160px;
}

.service-alt-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
    min-height: 320px;
}

.service-alt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.service-alt-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    opacity: 0.9;
}

.service-alt-image:hover img {
    transform: scale(1.05);
}

.service-alt-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .service-alt-title {
        font-size: 1.75rem;
    }

    .service-alt-actions {
        flex-direction: column;
    }

    .service-alt-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .service-alt-section {
        padding: 60px 0;
    }

    .services-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 1.75rem;
    }

    .service-detail-header h1 {
        font-size: 1.75rem;
    }

    .service-card-footer {
        flex-direction: column;
    }

    .service-card-footer .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: relative;
        top: 0;
        margin-top: 3rem;
    }

    .service-sidebar-modern {
        position: relative;
        top: 0;
        margin-top: 3rem;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-description {
        font-size: 1rem;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .process-step-item {
        flex-direction: column;
        text-align: center;
    }

    .process-step-item::before {
        display: none;
    }

    .step-number {
        margin: 0 auto;
    }
}

/* About Page Styles */
.about-hero-section {
    background: var(--gradient-hero);
    padding: 100px 0 80px;
    color: var(--white);
    text-align: center;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 1.5rem 0;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.about-mission-section,
.about-vision-section {
    padding: 80px 0;
}

.mission-visual,
.vision-visual {
    text-align: center;
}

.mission-icon-large,
.vision-icon-large {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.mission-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.mission-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.mission-feature-item i {
    color: #10b981;
    font-size: 1.25rem;
}

.vision-goals {
    margin-top: 2rem;
}

.vision-goal-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.vision-goal-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.goal-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.goal-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.goal-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.about-values-section {
    padding: 80px 0;
    background: var(--white);
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    color: var(--white);
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-cta-box {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
    color: var(--white);
}

.about-cta-box h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.about-cta-box .lead {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Contact Page Styles */
.contact-hero-section {
    background: var(--gradient-hero);
    padding: 100px 0 80px;
    color: var(--white);
    text-align: center;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 1.5rem 0;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-info-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.contact-info-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    z-index: 10;
    transition: var(--transition);
    pointer-events: none;
}

.input-group:focus-within .input-group-icon {
    color: var(--primary-color);
}

.input-group .form-control {
    padding-left: 3rem;
}

.input-group textarea.form-control {
    padding-left: 3rem;
    padding-top: 1rem;
}

/* Blog Page Styles */
.blog-hero-section {
    background: var(--gradient-hero);
    padding: 100px 0 80px;
    color: var(--white);
    text-align: center;
}

.blog-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 1.5rem 0;
}

.blog-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.blog-content-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post-card {
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-post-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--gradient-primary);
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    opacity: 0.5;
}

.blog-post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
}

.blog-post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-post-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.blog-post-title a:hover {
    color: var(--primary-color);
}

.blog-post-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.blog-post-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.blog-post-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.blog-pagination {
    margin-top: 3rem;
    text-align: center;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.widget-title i {
    color: var(--primary-color);
}

.widget-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-categories li {
    margin-bottom: 0.75rem;
}

.widget-categories a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: var(--border-radius-sharp);
}

.widget-categories a:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    padding-left: 1rem;
}

.widget-categories i {
    font-size: 0.75rem;
    color: var(--primary-color);
}

/* Blog Detail Page */
.blog-detail-hero {
    background: var(--gradient-hero);
    padding: 100px 0 60px;
    color: var(--white);
}

.blog-detail-header {
    text-align: center;
}

.blog-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blog-detail-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.blog-detail-content {
    padding: 80px 0;
    background: var(--white);
}

.blog-detail-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-article {
    margin-bottom: 3rem;
}

.blog-detail-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-share-section {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.blog-share-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.blog-share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sharp);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.share-facebook {
    background: #1877f2;
    color: var(--white);
}

.share-twitter {
    background: #1da1f2;
    color: var(--white);
}

.share-linkedin {
    background: #0077b5;
    color: var(--white);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.blog-comments-section {
    margin-top: 3rem;
}

.blog-comments-section h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.comment-text {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.comment-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.no-comments {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.no-comments i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.blog-detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.widget-author {
    text-align: center;
}

.author-avatar-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.widget-author h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.author-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {

    .about-hero-title,
    .contact-hero-title,
    .blog-hero-title {
        font-size: 1.75rem;
    }

    .blog-detail-header h1 {
        font-size: 1.75rem;
    }

    .mission-icon-large,
    .vision-icon-large {
        width: 150px;
        height: 150px;
        font-size: 3.5rem;
    }

    .blog-sidebar,
    .blog-detail-sidebar {
        position: relative;
        top: 0;
        margin-top: 3rem;
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .home-blog-section {
        padding: 60px 0;
    }

    .home-blog-image {
        height: 200px;
    }

    .home-blog-content {
        padding: 1.5rem;
    }

    .home-blog-title {
        font-size: 1.1rem;
    }

    .home-blog-excerpt {
        font-size: 0.85rem;
    }
}

/* Project Modal Styles */
.project-modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.project-modal-header {
    background: var(--gradient-primary);
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

.project-modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.project-modal-header .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.project-modal-body {
    padding: 2rem;
}

.project-modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.project-modal-body .form-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.project-modal-body .form-control,
.project-modal-body .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.project-modal-body .form-control:focus,
.project-modal-body .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    z-index: 9997;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #20BA5A;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

/* Support widget varsa WhatsApp butonunu yukarı kaydır */
.support-widget+.whatsapp-button,
.whatsapp-button:has(+ .support-widget) {
    bottom: 160px;
}

@media (max-width: 576px) {
    .whatsapp-button {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .project-modal-body {
        padding: 1.5rem;
    }
}

/* Lazy Loading Styles */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

img.lazy-loading {
    opacity: 0.5;
}

img.lazy-loaded {
    opacity: 1;
    animation: none;
    background: none;
}

img.lazy-error {
    opacity: 1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

img.lazy-error::after {
    content: '📷';
    font-size: 2rem;
    opacity: 0.3;
}

[data-bg] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease-in-out;
}

[data-bg].lazy-loaded {
    opacity: 1;
}

@keyframes loading-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Native lazy loading support */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"]:not([data-src]) {
    opacity: 1;
}



/* About Page Custom CSS */

/* Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Who We Are Section */
.about-who-section {
    position: relative;
}

.experience-badge {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.icon-square {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Stats Section */
.stats-section {
    background: #111827;
    color: #fff;
    padding: 80px 0;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-number-modern {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Mission & Vision */
.about-mission-section,
.about-vision-section {
    position: relative;
}

.mission-visual,
.vision-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-visual img,
.vision-visual img {
    transition: transform 0.5s ease;
}

.mission-visual:hover img,
.vision-visual:hover img {
    transform: scale(1.05);
}

.section-title-left {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
}

.section-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Values Section */
.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

/* CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    position: relative;
}

.opacity-10 {
    opacity: 0.1;
}

.ls-1 {
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -30px;
        margin-left: 20px;
        display: inline-block;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}

/* Project Modal Custom CSS */
.project-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.project-type-option {
    cursor: pointer;
    margin: 0;
}

.project-type-option input {
    display: none;
}

.project-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.project-type-card i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #64748b;
    transition: all 0.3s ease;
}

.project-type-card span {
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
}

.project-type-option input:checked+.project-type-card {
    background: #eff6ff;
    border-color: #2563eb;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1), 0 2px 4px -1px rgba(37, 99, 235, 0.06);
}

.project-type-option input:checked+.project-type-card i {
    color: #2563eb;
    transform: scale(1.1);
}

.project-type-option input:checked+.project-type-card span {
    color: #1e40af;
}

.project-type-option:hover .project-type-card {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .project-type-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}