/* --- Contents of css/main_style.css --- */

/* === MAIN_STYLE.CSS (Koyu Tema Tabanlı - Tamamlanmış) === */

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap");
/* menu_styles.css kaldırıldı - sadece QR menü sayfalarında yüklenecek */

:root {
    /* Ana Renkler */
    --clr-primary: #667eea;
    --clr-primary-rgb: 102,126,234;
    --clr-secondary: #6c757d;

    /* Nötr Renkler */
    --clr-light: #f8f9fa;
    --clr-white: #ffffff;
    --clr-dark: #343a40;

    /* Durum ve Vurgu Renkleri */
    --clr-success: #28a745;
    --clr-success-rgb: 40,167,69;
    --clr-warning: #ffc107;
    --clr-danger: #dc3545;
    --clr-danger-rgb: 220,53,69;
    --clr-info: #17a2b8;
    --clr-orange: #fd7e14;
    --clr-purple: #8e44ad;
    --clr-teal: #16a085;

    /* Fontlar ve Tipografi */
    --font-main: "Nunito", sans-serif;
    --font-size-base: 1rem; /* 16px varsayalım */
    --line-height-base: 1.7;
    
    /* Başlık Ölçekleri - Tüm sayfalarda tutarlı ölçeklendirme için standart değerler */
    --h1-size: clamp(2rem, 5vw, 2.8rem);
    --h2-size: clamp(1.7rem, 4vw, 2.3rem);
    --h3-size: clamp(1.3rem, 3vw, 1.8rem);
    --h4-size: clamp(1.1rem, 2vw, 1.4rem);
    --p-size: 1rem;
    --small-text: 0.9rem;

    /* Kenarlıklar ve Gölgeler */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;

    --box-shadow-dark-soft: 0 5px 15px rgba(0, 0, 0, 0.25);
    --box-shadow-dark-strong: 0 10px 30px rgba(0, 0, 0, 0.4);

    /* Geçişler */
    --transition-speed: 0.3s;
    
    /* Sayfa İç Boşlukları */
    --section-padding-y: 60px;
    --section-padding-x: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-main);
    background-color: #fff;
    color: #333;
    line-height: var(--line-height-base);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: var(--p-size);
    width: 100%;
    max-width: 100vw;
    padding-top: 110px;
}

@media (max-width: 992px) {
    body {
        padding-top: 80px;
    }
}

html {
    overflow-x: hidden;
    width: 100%;
}

main {
    flex-grow: 1;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: #1a1a2e;
    font-weight: 700;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: var(--p-size);
}

a {
    color: var(--clr-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease-in-out, opacity var(--transition-speed) ease-in-out;
}

a:hover, a:focus {
    color: var(--clr-white);
    opacity: 0.85;
    text-decoration: none;
}

/* === Temel Buton Stilleri === */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--clr-white);
    padding: 0.85rem 1.8rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-speed) ease-in-out;
    border: 1px solid transparent;
    cursor: pointer;
    box-shadow: var(--box-shadow-dark-soft);
    font-size: 1rem;
    min-height: 44px;
}

.cta-button:hover, .cta-button:focus {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-dark-strong);
    opacity: 0.9;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: transparent;
    color: var(--clr-primary);
    padding: 0.8rem 1.7rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-speed) ease-in-out;
    border: 2px solid var(--clr-primary);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    min-height: 44px;
}

.cta-button-secondary:hover, .cta-button-secondary:focus {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--clr-white);
    border-color: transparent;
    transform: translateY(-3px);
}

/* Yardımcı Sınıflar */
.text-center { text-align: center !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.mb-3 { margin-bottom: 3rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1rem !important; }
.mt-2 { margin-top: 2rem !important; }
.mt-3 { margin-top: 3rem !important; }

/* Genel Bölüm Stilleri */
section {
    padding: var(--section-padding-y) 0;
    position: relative;
    overflow-x: hidden;
}

/* Genel Bölüm Başlıkları (index_sections_style.css'den buraya taşındı, tüm sayfalarda kullanılabilir) */
.section-title {
    font-size: var(--h2-size);
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--clr-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--p-size);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-title-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    box-shadow: inset 0 -5px 10px rgba(0,0,0,0.1);
}

.page-title-section h1 {
    margin-bottom: 0.5rem;
}

.page-title-section h1 i {
    margin-right: 10px;
}

.page-title-section p {
    margin-bottom: 0;
}

/* Genel Bölüm düzenleri: Tüm bölüm içerikleri için bu stiller */
.split-section {
    padding: var(--section-padding-y) 0;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4%;
}

.split-image, .split-content {
    flex: 1;
}

.split-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-dark-soft);
    width: 100%;
    height: auto;
}

.split-content {
    padding: 20px 0;
}

.split-layout.alt-layout { /* Resim sağda, içerik solda */
    flex-direction: row-reverse;
}

.split-content .section-title-alt { /* Split içindeki başlık */
    font-size: var(--h2-size);
    margin-bottom: 1.2rem;
}

.split-content .section-title-alt::after { /* Alternatif başlık için çizgi olmasın */
    display: none;
}

.split-content .section-title-alt .highlight {
    color: var(--clr-primary);
}

.split-content ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.split-content ul li {
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 2rem;
}

.split-content ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--clr-primary);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    :root {
        --section-padding-y: 50px;
    }
}

@media (max-width: 768px) {
    .split-layout, .split-layout.alt-layout {
        flex-direction: column;
    }
    .split-layout.alt-layout .split-image {
        order: -1;
    }
    .split-image img {
        max-width: 100%;
    }
    .split-content {
        padding: 20px 0 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding-y: 40px;
        --h1-size: clamp(1.8rem, 5vw, 2.5rem);
        --h2-size: clamp(1.5rem, 4vw, 2rem);
        --h3-size: clamp(1.2rem, 3vw, 1.6rem);
    }
    
    .container {
        width: 95%;
    }
    
    .cta-button, .cta-button-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding-y: 30px;
        --section-padding-x: 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-button, .cta-button-secondary {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* --- Contents of css/header-glass.css --- */

/* Glassmorphism Header */
.glass-header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.glass-nav-main {
    position: relative;
    width: fit-content;
    min-width: 800px;
    padding: 0 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
}

.glass-nav-main ul {
    position: relative;
    list-style: none;
    display: flex;
    justify-content: center;
    height: 55px;
    isolation: isolate;
    padding: 0 15px;
    margin: 0;
}

.glass-nav-main ul::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 50%;
    transform: translateX(var(--translate-x, 0)) translateY(var(--translate-y, 0)) rotate(var(--rotate-x, 0deg));
    transition: none;
    opacity: 0;
    z-index: -1;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.6), 0 2px 8px rgba(168, 85, 247, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-nav-main ul.show-indicator::after {
    opacity: 1;
}

.glass-nav-main li {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-nav-main a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding-inline: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.glass-nav-main a:hover {
    color: white;
    transform: translateY(-2px);
}

.glass-nav-main a.active {
    color: white;
    transform: translateY(-2px);
}

/* Dropdown */
.dropdown-glass {
    position: relative;
}

.dropdown-content-glass {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.dropdown-glass:hover .dropdown-content-glass {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content-glass a {
    padding: 0.75rem 1.5rem;
    display: block;
    width: 100%;
    justify-content: flex-start;
    white-space: nowrap;
}

.dropdown-content-glass a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
}

/* Mega Menu */
.dropdown-mega-content {
    min-width: 700px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

@media (min-width: 769px) {
    .dropdown-mega-content {
        min-width: 700px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
}

.mega-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-title {
    font-weight: 700;
    font-size: 0.85rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
}

.mega-column a {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* Mobile */
.mobile-menu-btn-main {
    display: none;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-logo-main {
    display: none;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1001;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
}

.mobile-logo-main span {
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
    .glass-nav-main {
        min-width: 700px;
    }
    
    .glass-nav-main a {
        font-size: 0.9rem;
        padding-inline: 14px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .mobile-menu-btn-main {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-logo-main {
        display: block;
        position: fixed !important;
    }

    .glass-header-main {
        top: 90px;
        position: fixed !important;
    }

    .glass-nav-main {
        position: fixed;
        top: 90px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        padding: 20px;
        max-width: 90%;
        width: 90%;
        min-width: auto;
        max-height: 70vh;
        overflow-y: auto;
    }

    .glass-nav-main.active {
        opacity: 1;
        pointer-events: all;
        transform: translateX(-50%) translateY(0);
    }

    .glass-nav-main ul {
        flex-direction: column;
        height: auto;
        padding: 0;
        gap: 0.5rem;
    }

    .glass-nav-main li {
        width: 100%;
    }

    .glass-nav-main a {
        padding: 1rem;
        justify-content: flex-start;
    }

    .glass-nav-main ul::after {
        display: none;
    }

    /* Mobile Dropdown */
    .dropdown-glass > a::after {
        content: '▼';
        margin-left: auto;
        font-size: 0.7rem;
        transition: transform 0.3s;
    }

    .dropdown-glass.open > a::after {
        transform: rotate(180deg);
    }

    .dropdown-content-glass {
        position: static !important;
        transform: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
        transition: all 0.3s !important;
        padding: 0 !important;
        width: 100% !important;
        display: block !important;
    }

    .dropdown-glass.open .dropdown-content-glass {
        opacity: 1 !important;
        pointer-events: all !important;
        max-height: 2000px !important;
        padding: 1rem 0 !important;
    }

    .dropdown-content-glass a {
        padding: 0.75rem 1rem !important;
        display: block !important;
    }

    /* Mobile Mega Menu - OVERRIDE ALL */
    .dropdown-mega-content {
        min-width: 0 !important;
        width: 100% !important;
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        padding: 0.5rem 0 !important;
    }

    .mega-column {
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
        display: block !important;
        margin-bottom: 1rem !important;
        gap: 0 !important;
    }

    .mega-title {
        font-size: 0.75rem !important;
        margin-bottom: 0.5rem !important;
        opacity: 0.6 !important;
        display: block !important;
        padding: 0.5rem 1rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
    }

    .mega-column a {
        display: block !important;
        padding: 0.75rem 1.5rem !important;
        margin-left: 0.5rem !important;
        width: auto !important;
    }
}

/* --- Contents of css/hero-glass.css --- */

/* Glassmorphism Hero Section */
:root {
    --accent-blue: #00d4ff;
    --accent-purple: #a855f7;
}

body {
    background: linear-gradient(180deg, #0a0e27 0%, #0a0a1a 30%, #000 60%, #0a0a1a 80%, #0a0e27 100%) !important;
    background-attachment: fixed !important;
    position: relative;
    color: white !important;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 60%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Hero Glass */
.hero-glass {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-glass-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
    color: white;
}

.hero-title-glass {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white !important;
}

.hero-title-glass .gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-glass {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: white;
}

/* Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto;
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    opacity: 0.9;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.stat-desc {
    opacity: 0.6;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: white;
}

/* CTA Buttons */
.hero-cta-glass {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-glass-primary,
.btn-glass-secondary {
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.btn-glass-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white !important;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.btn-glass-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 60px rgba(0, 212, 255, 0.5);
}

.btn-glass-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white !important;
}

.btn-glass-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-glass {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title-glass {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-glass {
        font-size: 1.1rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-cta-glass {
        flex-direction: column;
    }
    
    .btn-glass-primary,
    .btn-glass-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* --- Contents of css/services-glass.css --- */

/* Services Glassmorphism - Premium */
.services-glass {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.services-header-glass {
    text-align: center;
    margin-bottom: 4rem;
}

.services-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.services-title-glass {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.services-subtitle-glass {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: white;
}

/* Services Grid */
.services-grid-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.service-card-glass:hover::before {
    opacity: 1;
}

/* Card Header */
.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-icon-glass {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    transition: all 0.4s;
}

.service-card-glass:hover .service-icon-glass {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.6);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    line-height: 1;
}

/* Card Content */
.service-card-content {
    position: relative;
    z-index: 1;
}

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

.service-desc-card {
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: white;
}

/* Features List */
.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: white;
    opacity: 0.9;
}

.service-features i {
    color: #00d4ff;
    font-size: 1.1rem;
}

/* Card Footer */
.service-link-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.service-link-glass:hover {
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-color: transparent;
    transform: translateX(5px);
}

.service-link-glass i {
    transition: transform 0.3s;
}

.service-link-glass:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .services-glass {
        padding: 3rem 1rem;
    }
    
    .services-grid-glass {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-glass {
        padding: 2rem;
    }
    
    .services-title-glass {
        font-size: 2rem;
    }
}

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

/* --- Contents of css/quality-glass.css --- */

/* Quality Glassmorphism */
.quality-glass {
    padding: 6rem 2rem;
    position: relative;
}

.quality-container-glass {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.quality-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.quality-title-glass {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.quality-desc-glass {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: white;
}

/* Quality Points */
.quality-points-glass {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.quality-point-glass {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s;
}

.quality-point-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(0, 212, 255, 0.3);
}

.quality-icon-glass {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.quality-point-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.quality-point-content p {
    opacity: 0.85;
    color: white;
}

/* Right Visual */
.quality-visual-glass {
    position: relative;
}

.quality-stats-glass {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.quality-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.quality-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.quality-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.quality-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.quality-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .quality-container-glass {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quality-stats-glass {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .quality-glass {
        padding: 3rem 1rem;
    }
    
    .quality-stats-glass {
        grid-template-columns: 1fr;
    }
}

/* --- Contents of css/partners-glass.css --- */

/* Partners Glassmorphism */
.partners-glass {
    padding: 6rem 2rem;
    text-align: center;
}

.partners-header-glass {
    margin-bottom: 4rem;
}

.partners-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.partners-title-glass {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.partners-subtitle-glass {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

/* Logo Scroll */
.logos-scroll-glass {
    overflow: hidden;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.logos-track-glass {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

.logo-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.logo-card-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.logo-card-glass img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* Trust Stats */
.trust-stats-glass {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.trust-card-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.trust-icon-glass {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.trust-number-glass {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.trust-label-glass {
    font-size: 1rem;
    opacity: 0.9;
    color: white;
}

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

@media (max-width: 968px) {
    .trust-stats-glass {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .partners-glass {
        padding: 3rem 1rem;
    }
    
    .trust-stats-glass {
        grid-template-columns: 1fr;
    }
}

/* --- Contents of css/showcase-glass.css --- */

/* Showcase Glassmorphism */
.showcase-glass {
    padding: 6rem 2rem;
}

.showcase-header-glass {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.showcase-title-glass {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.showcase-subtitle-glass {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

/* Grid */
.showcase-grid-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
}

.showcase-card-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.showcase-image-glass {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.showcase-image-glass img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.showcase-card-glass:hover .showcase-image-glass img {
    transform: scale(1.1);
}

.showcase-overlay-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(168, 85, 247, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    padding: 2rem;
    text-align: center;
}

.showcase-card-glass:hover .showcase-overlay-glass {
    opacity: 1;
}

.showcase-overlay-glass h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.showcase-overlay-glass p {
    margin-bottom: 1rem;
    opacity: 0.95;
    color: white;
}

.showcase-tags-glass {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.showcase-tags-glass span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: white;
}

.showcase-btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #1a1a2e;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.showcase-btn-glass:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.showcase-info-glass {
    padding: 1.5rem;
}

.showcase-info-glass h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.showcase-info-glass p {
    opacity: 0.8;
    color: white;
}

@media (max-width: 768px) {
    .showcase-glass {
        padding: 3rem 1rem;
    }
    
    .showcase-grid-glass {
        grid-template-columns: 1fr;
    }
}

/* --- Contents of css/testimonials-glass.css --- */

/* Testimonials Glassmorphism */
.testimonials-glass {
    padding: 6rem 2rem;
}

.testimonials-header-glass {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.testimonials-title-glass {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.testimonials-subtitle-glass {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

/* Grid */
.testimonials-grid-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
}

.testimonial-card-glass::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.testimonial-header-glass {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar-glass {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.testimonial-info-glass h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.testimonial-info-glass p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.testimonial-rating-glass {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating-glass i {
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-text-glass {
    line-height: 1.7;
    opacity: 0.9;
    color: white;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .testimonials-glass {
        padding: 3rem 1rem;
    }
    
    .testimonials-grid-glass {
        grid-template-columns: 1fr;
    }
}

/* --- Contents of css/tech-glass.css --- */

/* Tech Stack Glassmorphism */
.tech-glass {
    padding: 6rem 2rem;
}

.tech-header-glass {
    text-align: center;
    margin-bottom: 4rem;
}

.tech-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.tech-title-glass {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.tech-subtitle-glass {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

.tech-grid-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.tech-item-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
}

.tech-item-glass i {
    font-size: 3rem;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-item-glass span {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

@media (max-width: 768px) {
    .tech-glass {
        padding: 3rem 1rem;
    }
    
    .tech-grid-glass {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* --- Contents of css/why-glass.css --- */

/* Why Choose Glassmorphism */
.why-glass {
    padding: 6rem 2rem;
}

.why-header-glass {
    text-align: center;
    margin-bottom: 4rem;
}

.why-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.why-title-glass {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.why-subtitle-glass {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

.why-grid-glass {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
}

.why-card-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.why-icon-wrapper-glass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.why-icon-glass {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.why-number-glass {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
}

.why-card-glass h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.why-card-glass p {
    opacity: 0.9;
    line-height: 1.7;
    color: white;
}

@media (max-width: 968px) {
    .why-grid-glass {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-glass {
        padding: 3rem 1rem;
    }
}

/* --- Contents of css/cta-glass.css --- */

/* CTA Glassmorphism */
.cta-glass {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-container-glass {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
}

.cta-icon-glass {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.cta-title-glass {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.cta-desc-glass {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: white;
}

.cta-buttons-glass {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-features-glass {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature-glass {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    opacity: 0.9;
}

.cta-feature-glass i {
    color: #00d4ff;
    font-size: 1.2rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .cta-glass {
        padding: 3rem 1rem;
    }
    
    .cta-container-glass {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-buttons-glass {
        flex-direction: column;
    }
    
    .cta-features-glass {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Contents of css/footer-glass.css --- */

/* Footer Glassmorphism */
.footer-glass {
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-container-glass {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid-glass {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Company Info */
.footer-logo-glass {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon-glass {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.footer-logo-text-glass {
    display: flex;
    flex-direction: column;
}

.footer-logo-main-glass {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-logo-sub-glass {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.footer-desc-glass {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-social-glass {
    display: flex;
    gap: 1rem;
}

.footer-social-link-glass {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-link-glass:hover {
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    transform: translateY(-3px);
    border-color: transparent;
}

/* Footer Columns */
.footer-title-glass {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links-glass {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-glass a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-glass a:hover {
    opacity: 1;
    color: #00d4ff;
    transform: translateX(5px);
}

.footer-links-glass i {
    font-size: 0.7rem;
}

/* Contact */
.footer-contact-glass {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-glass li {
    display: flex;
    gap: 1rem;
    color: white;
}

.footer-contact-glass i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    flex-shrink: 0;
}

.footer-contact-glass strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.footer-contact-glass a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-contact-glass a:hover {
    opacity: 1;
    color: #00d4ff;
}

/* Footer Bottom */
.footer-bottom-glass {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright-glass {
    color: white;
    opacity: 0.7;
}

.footer-legal-glass {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal-glass a {
    color: white;
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-legal-glass a:hover {
    opacity: 1;
    color: #00d4ff;
}

.footer-separator-glass {
    color: white;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-grid-glass {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-glass {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-grid-glass {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-glass {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Contents of css/ai-section-glass.css --- */

/* AI Solutions Glassmorphism */
.ai-solutions-glass {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.ai-section-header-glass {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.ai-title-glass {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.ai-gradient-text {
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-subtitle-glass {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: white;
}

/* AI Tools Grid */
.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ai-tool-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    text-align: center;
}

.ai-tool-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.ai-tool-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.ai-tool-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.ai-tool-desc {
    opacity: 0.8;
    line-height: 1.6;
    color: white;
}

/* CTA */
.ai-cta-glass {
    text-align: center;
    margin-top: 4rem;
}

.btn-ai-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.btn-ai-glass:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 60px rgba(0, 212, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .ai-solutions-glass {
        padding: 3rem 1rem;
    }
    
    .ai-tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-title-glass {
        font-size: 2rem;
    }
}

/* --- Contents of css/whatsapp-button.css --- */

/* WhatsApp Button Styles */
.whatsapp-btn {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
}

.whatsapp-btn:hover {
    background-color: #128C7E !important;
    border-color: #128C7E !important;
}

.whatsapp-btn i {
    color: white !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}

.whatsapp-float i {
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}
