/* ============================================
   BMA REKLAM - Ana CSS
   Dark Theme + Pink/Magenta Accent
   ============================================ */

:root {
    --primary: #e91e8c;
    --primary-dark: #c2185b;
    --primary-light: #f06292;
    --secondary: #00d4ff;
    --bg-dark: #070712;
    --bg-card: #0e0e20;
    --bg-card2: #13132a;
    --text-light: #e8e8f0;
    --text-muted: #8888aa;
    --border: rgba(233, 30, 140, 0.2);
    --glow: 0 0 20px rgba(233, 30, 140, 0.4);
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============ CIRCUIT BACKGROUND ============ */
.circuit-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.circuit-bg::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background-image:
        linear-gradient(rgba(233,30,140,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(233,30,140,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(60px, 60px); }
}

/* ============ NAVBAR ============ */
#navbar {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}
#navbar.scrolled {
    background: rgba(7, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(233, 30, 140, 0.1);
}
.navbar-brand img { height: 45px; }
.navbar-brand .brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}
.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 15px !important;
    position: relative;
    transition: var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 15px;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-link:hover::after { width: calc(100% - 30px); }
.nav-link:hover { color: var(--primary) !important; }
.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border-radius: 25px !important;
    padding: 8px 22px !important;
    color: #fff !important;
    box-shadow: var(--glow);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(233,30,140,0.5) !important; }
.nav-cta::after { display: none !important; }
.navbar-toggler { border-color: var(--primary) !important; }
.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(233,30,140,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============ HERO ============ */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}
.hero-particles {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(233,30,140,0.15);
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6ec7 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-quote {
    font-style: italic;
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-quote span { font-size: 0.85rem; color: var(--text-muted); display: block; }
.hero-buttons { animation: fadeInUp 0.8s ease 0.6s both; }
.btn-primary-glow {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--glow);
    text-decoration: none;
    display: inline-block;
}
.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233,30,140,0.5);
    color: #fff;
}
.btn-outline-glow {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 13px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    margin-left: 15px;
}
.btn-outline-glow:hover {
    background: rgba(0,212,255,0.1);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
    color: var(--secondary);
}

/* Hero Stats */
.hero-stats {
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.stat-item { text-align: center; padding: 20px; }
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 5px; }

/* Hero Hexagons Showcase */
.hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    animation: fadeIn 1s ease 0.5s both;
}
.hex-grid {
    display: grid;
    grid-template-columns: repeat(2, 180px);
    gap: 15px;
    transform: rotate(-10deg);
}
.hex-item {
    position: relative;
    width: 180px;
    height: 180px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.hex-item:hover { transform: scale(1.05) rotate(5deg); }
.hex-item img { width: 100%; height: 100%; object-fit: cover; }
.hex-item .hex-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(233,30,140,0.8));
    padding: 20px 10px 10px;
    text-align: center;
}
.hex-item .hex-overlay span { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.hex-item:nth-child(even) { margin-top: 30px; }
.hex-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}
.hex-glow-1 { width: 400px; height: 400px; background: var(--primary); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: pulse 4s ease-in-out infinite; }
.hex-glow-2 { width: 250px; height: 250px; background: var(--secondary); top: 20%; right: 10%; animation: pulse 4s ease-in-out 2s infinite; }

/* ============ SECTION STYLES ============ */
section { position: relative; z-index: 1; }
.section-padding { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}
.section-tag::before, .section-tag::after {
    content: '——';
    margin: 0 10px;
    opacity: 0.5;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}
.section-title .accent { color: var(--primary); }
.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 20px auto 0;
}

/* ============ SERVICE CARDS ============ */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233,30,140,0.05), transparent);
    transition: 0.5s;
}
.service-card:hover::before { left: 100%; }
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--glow), 0 20px 40px rgba(0,0,0,0.3);
}
.service-icon {
    width: 70px; height: 70px;
    background: rgba(233,30,140,0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--glow);
    transform: rotate(10deg) scale(1.1);
}
.service-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.service-card .service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
.service-card .no-img {
    width: 100%;
    height: 180px;
    background: rgba(233,30,140,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px dashed var(--border);
}

/* ============ CATEGORY TABS ============ */
.category-tabs { justify-content: center; margin-bottom: 50px; }
.category-tabs .nav-link {
    background: transparent !important;
    border: 1px solid var(--border) !important;
    color: var(--text-muted) !important;
    border-radius: 50px !important;
    padding: 10px 30px !important;
    margin: 0 5px !important;
    transition: var(--transition) !important;
    font-weight: 600;
}
.category-tabs .nav-link::after { display: none !important; }
.category-tabs .nav-link.active,
.category-tabs .nav-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    box-shadow: var(--glow) !important;
    transform: none !important;
}

/* ============ HEXAGONAL SERVICE SHOWCASE ============ */
.hex-showcase { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.hex-showcase-item {
    position: relative;
    width: 200px;
    cursor: pointer;
}
.hex-showcase-item .hex-shape {
    width: 200px;
    height: 200px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    transition: var(--transition);
    background: var(--bg-card2);
    border: 2px solid var(--border);
}
.hex-showcase-item:hover .hex-shape { transform: scale(1.08); }
.hex-showcase-item .hex-shape img { width: 100%; height: 100%; object-fit: cover; }
.hex-showcase-item .hex-shape .hex-icon {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
    font-size: 2.5rem;
    color: var(--primary);
}
.hex-showcase-item .hex-shape .hex-icon span { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }
.hex-showcase-item:hover .hex-shape .hex-icon { color: var(--primary-light); }
.hex-label {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}
.hex-showcase-item:nth-child(even) { margin-top: 50px; }

/* ============ PROJECTS ============ */
#yazilim { background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(14,14,32,0.8) 100%); }
.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow), 0 20px 50px rgba(0,0,0,0.3);
}
.project-img-wrap {
    height: 220px;
    background: linear-gradient(135deg, var(--bg-card2), #1a0a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.project-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--primary);
    font-size: 3rem;
}
.project-img-placeholder p { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; }
.project-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.project-body { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.project-body h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; color: var(--text-light); }
.project-body .project-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; flex: 1; }
.project-tech {
    display: flex; flex-wrap: wrap; gap: 6px; margin-top: 15px;
}
.tech-tag {
    background: rgba(233,30,140,0.1);
    border: 1px solid rgba(233,30,140,0.2);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.project-features { margin-top: 20px; }
.project-features h6 { color: var(--primary); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 10px; }
.feature-list { list-style: none; }
.feature-list li {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.feature-list li::before { content: '▸'; color: var(--primary); flex-shrink: 0; }
.project-footer { padding: 0 25px 25px; }
.btn-project {
    display: block;
    text-align: center;
    padding: 12px;
    background: rgba(233,30,140,0.1);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}
.btn-project:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ============ ABOUT ============ */
#hakkimizda { background: var(--bg-card); }
.about-img-frame {
    position: relative;
    display: inline-block;
}
.about-img-frame img {
    width: 100%;
    border-radius: 20px;
    filter: brightness(0.8) saturate(1.2);
}
.about-img-frame::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px;
    right: 10px; bottom: 10px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    opacity: 0.5;
}
.about-img-frame::after {
    content: '';
    position: absolute;
    top: 10px; left: 10px;
    right: -10px; bottom: -10px;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    opacity: 0.3;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.about-feature-icon {
    width: 45px; height: 45px;
    background: rgba(233,30,140,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.about-feature-text h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.about-feature-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ============ CONTACT ============ */
#iletisim { background: linear-gradient(135deg, var(--bg-dark) 0%, #0a051a 100%); }
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card2);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-light);
}
.contact-info-item:hover {
    transform: translateX(5px);
    border-left: 3px solid var(--primary);
    color: var(--text-light);
}
.contact-info-icon {
    width: 50px; height: 50px;
    background: rgba(233,30,140,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-info-text h6 { margin: 0 0 3px; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-info-text p { margin: 0; font-weight: 600; }
.form-control-dark {
    background: var(--bg-card2) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-light) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    transition: var(--transition) !important;
}
.form-control-dark:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(233,30,140,0.1) !important;
    outline: none !important;
}
.form-control-dark::placeholder { color: var(--text-muted) !important; }
.form-label { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 8px; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: bounce 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 35px rgba(37,211,102,0.6); animation: none; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============ FOOTER ============ */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}
.footer-brand { margin-bottom: 25px; }
.footer-brand .brand-name { font-size: 1.8rem; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 25px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
    width: 40px; height: 40px;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: var(--glow); }
.footer-title { color: var(--primary); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '▸'; color: var(--primary); font-size: 0.7rem; }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.footer-bottom .accent { color: var(--primary); }

/* ============ MAP ============ */
.map-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ============ LOADING SPINNER ============ */
#page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s, visibility 0.5s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-size: 2rem; font-weight: 900; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 3px; }
.loader-bar { width: 200px; height: 3px; background: var(--bg-card); border-radius: 3px; overflow: hidden; }
.loader-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 3px; animation: loadingBar 1.5s ease-in-out forwards; }
@keyframes loadingBar { from { width: 0; } to { width: 100%; } }

/* ============ ANIMATIONS ============ */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 0.5; transform: translate(-50%,-50%) scale(1.1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.animate-float { animation: float 4s ease-in-out infinite; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s, transform 0.6s; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s, transform 0.6s; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============ ALERT ============ */
.alert-custom {
    background: rgba(233,30,140,0.1);
    border: 1px solid var(--primary);
    color: var(--text-light);
    border-radius: 10px;
    padding: 15px 20px;
}
.alert-success-custom {
    background: rgba(0,200,100,0.1);
    border: 1px solid #00c864;
    color: var(--text-light);
    border-radius: 10px;
    padding: 15px 20px;
}

/* ============ COUNTER ============ */
.counter-wrap {
    padding: 60px 0;
    background: linear-gradient(90deg, rgba(233,30,140,0.05) 0%, transparent 50%, rgba(0,212,255,0.05) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ============ MODAL ============ */
.modal-content {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 20px !important;
}
.modal-header { border-bottom: 1px solid var(--border) !important; }
.modal-footer { border-top: 1px solid var(--border) !important; }
.modal-title { color: var(--primary) !important; }
.btn-close { filter: invert(1) !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .hex-grid { grid-template-columns: repeat(2, 150px); }
    .hex-item { width: 150px; height: 150px; }
    .hero-showcase { min-height: 300px; }
}
@media (max-width: 767px) {
    .section-padding { padding: 70px 0; }
    .hero-showcase { display: none; }
    .hex-showcase-item:nth-child(even) { margin-top: 0; }
    .hex-showcase-item { width: 150px; }
    .hex-showcase-item .hex-shape { width: 150px; height: 150px; }
    .footer-bottom { text-align: center; justify-content: center; }
    .btn-outline-glow { margin-left: 0; margin-top: 10px; }
    .contact-card { padding: 25px 20px; }
}
@media (max-width: 480px) {
    .hex-showcase-item { width: 130px; }
    .hex-showcase-item .hex-shape { width: 130px; height: 130px; }
}
