/* ═══════════════════════════════════════════════
   SMMM Kurumsal Site - Bold Modern Theme
   Palette: Dark + Coral Red (#fa2851) + Gold (#ffc107)
   Inspired by MegaOne Digital Marketing
   ═══════════════════════════════════════════════ */

:root {
    --primary: #2d2228;
    --primary-dark: #231a20;
    --primary-light: #453a40;
    --accent: #fa2851;
    --accent-light: #ff4d73;
    --accent-dark: #d91e43;
    --secondary: #ffc107;
    --secondary-light: #ffd54f;
    --dark: #1a1218;
    --dark-2: #201820;
    --text: #2d2228;
    --text-muted: #6b5f65;
    --bg-light: #fdf9fa;
    --bg-section: #f9f5f6;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1a1218 0%, #231a20 50%, #2d2228 100%);
    --gradient-accent: linear-gradient(135deg, #fa2851 0%, #ff4d73 100%);
    --gradient-warm: linear-gradient(135deg, #fa2851 0%, #ffc107 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.12);
    --shadow-accent: 0 8px 24px rgba(250,40,81,0.25);
    --radius: 12px;
    --radius-lg: 18px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base ── */
*,*::before,*::after { box-sizing: border-box; }
body {
    font-family: 'Inter','Segoe UI',system-ui,-apple-system,sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
    line-height: 1.6;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    letter-spacing: -0.02em;
}
h1 { letter-spacing: -0.03em; }
a { transition: all 0.25s var(--transition); }
::selection { background: var(--accent); color: #fff; }
html { scroll-behavior: smooth; }
img { max-width: 100%; }
.lead { font-size: 1.1rem; line-height: 1.75; }

/* ── Utility ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(250,40,81,0.06);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(250,40,81,0.1);
}
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.gold-line {
    width: 56px;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}
.gold-line-center {
    width: 56px;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 4px;
    margin: 0 auto 1.5rem;
}

/* ── Top Bar ── */
.top-bar {
    background: var(--dark) !important;
    border-bottom: 2px solid var(--accent);
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}
.top-bar a { opacity: 0.7; }
.top-bar a:hover { opacity: 1; color: var(--accent-light) !important; text-decoration: none !important; }

/* ── Navbar ── */
.navbar {
    padding: 0.85rem 0;
    background: var(--white) !important;
    border-bottom: none;
    transition: all 0.3s var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar.scrolled, .navbar.shadow {
    padding: 0.55rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
}
.navbar-brand img { transition: transform 0.25s var(--transition); }
.navbar-brand:hover img { transform: scale(1.03); }
.navbar-nav { gap: 0.15rem; }
.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem !important;
    color: var(--text) !important;
    border-radius: 8px;
    transition: all 0.25s var(--transition);
    letter-spacing: 0.01em;
    position: relative;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
    background: rgba(250,40,81,0.05);
}
.dropdown-menu {
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius);
    padding: 0.5rem;
    animation: dropIn 0.2s var(--transition);
}
.dropdown-item {
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.15s;
}
.dropdown-item:hover {
    background: rgba(250,40,81,0.05);
    color: var(--accent);
}
@keyframes dropIn {
    from { opacity:0; transform:translateY(-8px); }
    to { opacity:1; transform:translateY(0); }
}

/* ── Buttons ── */
.btn-primary {
    background: var(--accent) !important;
    border: none !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    padding: 0.65rem 1.6rem;
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-accent);
    transition: all 0.3s var(--transition);
    color: #fff !important;
}
.btn-primary:hover {
    background: var(--accent-dark) !important;
    box-shadow: 0 10px 28px rgba(250,40,81,0.35);
    transform: translateY(-2px);
}
.btn-outline-primary {
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.6rem;
    letter-spacing: 0.01em;
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}
.btn-accent {
    background: var(--gradient-warm) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.7rem 2rem;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(250,40,81,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s var(--transition);
}
.btn-accent:hover {
    box-shadow: 0 8px 28px rgba(250,40,81,0.4);
    transform: translateY(-2px);
}
.btn-success {
    background: var(--accent) !important;
    border: none !important;
    font-weight: 600;
    border-radius: 10px !important;
    padding: 0.5rem 1.3rem !important;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(250,40,81,0.2);
}
.btn-success:hover {
    background: var(--accent-dark) !important;
    box-shadow: 0 5px 16px rgba(250,40,81,0.3);
    transform: translateY(-1px);
}
.btn-lg {
    padding: 0.8rem 2.2rem;
    font-size: 1.02rem;
}

/* ── Hero ── */
.hero-section {
    background: var(--primary-dark) !important;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 500px at 70% 10%, rgba(250,40,81,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 500px 400px at 15% 85%, rgba(255,193,7,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 90% 80%, rgba(250,40,81,0.05) 0%, transparent 70%);
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-warm);
}
.hero-section .container { position: relative; z-index: 1; }
.hero-section h1 {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    font-size: 3rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-section .lead { font-weight: 400; line-height: 1.8; color: rgba(255,255,255,0.6); font-size: 1.1rem; }
.hero-section .btn-light {
    background: #fff; color: var(--accent);
    font-weight: 700; border: none;
    border-radius: 10px; padding: 0.8rem 2.2rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    font-size: 1rem;
}
.hero-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}
.hero-section .btn-outline-light {
    border-radius: 10px; padding: 0.8rem 2.2rem;
    font-weight: 600; border-width: 2px;
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.25);
    font-size: 1rem;
}
.hero-section .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}
.hero-stat {
    text-align: center;
    padding: 1.25rem 0.75rem;
}
.hero-stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.35rem;
}
.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ── Page Header ── */
.bg-primary {
    background: var(--primary-dark) !important;
}
.page-header {
    background: var(--primary-dark);
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

/* ── Cards ── */
.card {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--transition);
    background: var(--white);
    overflow: hidden;
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

/* ── Service Cards ── */
.service-card {
    border: none !important;
    border-radius: var(--radius-lg) !important;
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-warm);
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.4s var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl) !important;
}
.service-card:hover::after { width: 100%; }
.service-card .card-body .bi.fs-1 {
    background: rgba(250,40,81,0.06);
    width: 68px; height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.6rem !important;
    color: var(--accent) !important;
    transition: all 0.35s var(--transition);
    border: 1px solid rgba(250,40,81,0.08);
}
.service-card:hover .card-body .bi.fs-1 {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff !important;
    transform: scale(1.08) rotate(-3deg);
}

/* ── Content Body ── */
.content-body h2,.content-body h3,.content-body h4 { margin-top:1.5rem; margin-bottom:0.75rem; }
.content-body p { line-height:1.85; color:var(--text-muted); font-size:1.02rem; }
.content-body ul,.content-body ol { padding-left:1.5rem; line-height:2; }
.content-body table { width:100%; margin-bottom:1rem; }
.content-body img { max-width:100%; height:auto; border-radius:var(--radius); }

/* ── Breadcrumb ── */
.breadcrumb-item a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:0.88rem; }
.breadcrumb-item a:hover { color:var(--accent-light); }
.breadcrumb-item + .breadcrumb-item::before { color:rgba(255,255,255,0.3); }
.breadcrumb-item.active { color:rgba(255,255,255,0.8); font-size:0.88rem; }

/* ── Accordion ── */
.accordion-item {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius) !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}
.accordion-button {
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius) !important;
    font-size: 0.95rem;
}
.accordion-button:not(.collapsed) {
    background: rgba(250,40,81,0.04);
    color: var(--accent);
    box-shadow: none;
}
.accordion-button:focus { box-shadow:none; border-color:rgba(250,40,81,0.15); }

/* ── Forms ── */
.form-control,.form-select {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
    transition: all 0.2s;
    color: var(--text);
}
.form-control:focus,.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(250,40,81,0.08);
}
.form-label { font-weight:600; font-size:0.85rem; color:var(--text); margin-bottom:0.4rem; }

/* ── Badges ── */
.badge { font-weight:600; border-radius:6px; padding:0.35em 0.7em; font-size:0.75em; letter-spacing:0.02em; }

/* ── Footer ── */
footer {
    background: var(--dark) !important;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-warm);
}
footer h6 {
    color: var(--accent-light); font-weight:700;
    text-transform: uppercase;
    font-size:0.72rem; letter-spacing:2.5px;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}
footer h6::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
footer a {
    transition: all 0.2s;
}
footer a:hover {
    color: var(--accent-light) !important;
    padding-left: 4px;
}
footer .text-white-50 { color:rgba(255,255,255,0.45) !important; }
footer .footer-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.3rem 0;
    transition: all 0.2s;
}
footer .footer-link::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    font-size: 0.6rem;
    color: var(--accent);
    opacity: 0;
    transition: all 0.2s;
}
footer .footer-link:hover::before { opacity: 1; }
footer .footer-link:hover {
    color: var(--accent-light);
    padding-left: 4px;
}
footer hr { border-color:rgba(250,40,81,0.12) !important; margin:2.5rem 0 1.25rem; }
footer .footer-bottom {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}
footer .social-icon {
    display: inline-flex;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(250,40,81,0.08);
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s var(--transition);
    font-size: 0.95rem;
    border: 1px solid rgba(250,40,81,0.12);
}
footer .social-icon:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(250,40,81,0.3);
}

/* ── Pagination ── */
.page-link {
    color: var(--accent);
    border-radius: 10px !important;
    margin: 0 2px;
    font-weight: 600;
    font-size: 0.88rem;
    border: 1px solid rgba(0,0,0,0.08);
}
.page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
}

/* ── Scroll Top Button ── */
.scroll-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 46px; height: 46px;
    background: var(--gradient-warm);
    color: #fff; border: none;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(250,40,81,0.3);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}
.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(250,40,81,0.4);
}

/* ── Tables ── */
.table thead th {
    background: var(--primary-dark);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid var(--accent);
}

/* ── Gallery ── */
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.gallery-item img { transition: transform 0.5s var(--transition); }
.gallery-item:hover img { transform: scale(1.06); }

/* ── Alerts ── */
.alert {
    border-radius: var(--radius);
    font-size: 0.9rem;
    border: none;
}

/* ── CTA Section ── */
.cta-section {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 350px at 85% 50%, rgba(250,40,81,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 300px 200px at 10% 50%, rgba(255,193,7,0.05) 0%, transparent 70%);
}
.cta-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

/* ── Contact Cards ── */
.contact-card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: all 0.35s var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-warm);
}
.contact-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}
.contact-card-icon {
    width: 64px; height: 64px;
    background: var(--accent);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.35s;
    box-shadow: 0 6px 16px rgba(250,40,81,0.25);
}
.contact-card:hover .contact-card-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 22px rgba(250,40,81,0.3);
}
.contact-card-icon i {
    font-size: 1.4rem;
    color: #fff;
    transition: color 0.3s;
}

/* ── Hero Animated Shapes ── */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
/* ── Row 1: Top area ── */
.hero-shapes .s1 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(250,40,81,0.1) 0%, transparent 70%);
    top: -60px; right: 8%;
    animation: hFloat1 12s ease-in-out infinite;
    opacity: 1;
}
.hero-shapes .s2 {
    width: 10px; height: 10px;
    background: rgba(255,193,7,0.35);
    top: 8%; left: 12%;
    animation: hFloat3 7s ease-in-out infinite;
    opacity: 1;
}
.hero-shapes .s3 {
    width: 50px; height: 50px;
    border: 2px solid rgba(255,193,7,0.08);
    border-radius: 10px;
    top: 10%; left: 35%;
    animation: hRotate1 22s linear infinite;
    opacity: 1;
}
.hero-shapes .s4 {
    width: 7px; height: 7px;
    background: rgba(250,40,81,0.3);
    top: 5%; right: 30%;
    animation: hFloat4 9s ease-in-out infinite;
    opacity: 1;
}
.hero-shapes .s5 {
    width: 140px; height: 140px;
    border: 1.5px solid rgba(250,40,81,0.06);
    top: -20px; left: -20px;
    animation: hFloat2 16s ease-in-out infinite;
    opacity: 1;
}
/* ── Row 2: Upper-middle area ── */
.hero-shapes .s6 {
    width: 8px; height: 8px;
    background: rgba(250,40,81,0.25);
    top: 22%; left: 8%;
    animation: hFloat5 8s ease-in-out infinite;
    opacity: 1;
}
.hero-shapes .s7 {
    width: 60px; height: 60px;
    border: 2px solid rgba(250,40,81,0.07);
    border-radius: 12px;
    top: 18%; right: 18%;
    animation: hRotate2 20s linear infinite;
    opacity: 1;
}
.hero-shapes .s8 {
    width: 6px; height: 6px;
    background: rgba(255,193,7,0.4);
    top: 25%; left: 48%;
    animation: hFloat3 6s ease-in-out 1s infinite;
    opacity: 1;
}
.hero-shapes .s9 {
    width: 200px; height: 200px;
    border: 1px solid rgba(250,40,81,0.05);
    top: 15%; right: 2%;
    animation: hFloat6 14s ease-in-out infinite;
    opacity: 1;
}
.hero-shapes .s10 {
    width: 5px; height: 5px;
    background: rgba(250,40,81,0.2);
    top: 28%; left: 22%;
    animation: hFloat4 11s ease-in-out 2s infinite;
    opacity: 1;
}
/* ── Row 3: Middle area ── */
.hero-shapes .s11 {
    width: 100px; height: 100px;
    border: 1.5px solid rgba(255,193,7,0.05);
    top: 40%; left: 5%;
    animation: hFloat2 18s ease-in-out 3s infinite;
    opacity: 1;
}
.hero-shapes .s12 {
    width: 9px; height: 9px;
    background: rgba(250,40,81,0.3);
    top: 38%; right: 35%;
    animation: hFloat5 7s ease-in-out infinite;
    opacity: 1;
}
.hero-shapes .s13 {
    width: 40px; height: 40px;
    border: 1.5px solid rgba(250,40,81,0.08);
    border-radius: 8px;
    top: 42%; left: 42%;
    animation: hRotate1 18s linear infinite reverse;
    opacity: 1;
}
.hero-shapes .s14 {
    width: 7px; height: 7px;
    background: rgba(255,193,7,0.3);
    top: 45%; right: 12%;
    animation: hFloat3 9s ease-in-out 2s infinite;
    opacity: 1;
}
.hero-shapes .s15 {
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(255,193,7,0.05) 0%, transparent 70%);
    top: 35%; left: 25%;
    animation: hFloat1 15s ease-in-out 4s infinite;
    opacity: 1;
}
/* ── Row 4: Lower-middle area ── */
.hero-shapes .s16 {
    width: 6px; height: 6px;
    background: rgba(250,40,81,0.25);
    bottom: 35%; left: 15%;
    animation: hFloat4 8s ease-in-out 1s infinite;
    opacity: 1;
}
.hero-shapes .s17 {
    width: 180px; height: 180px;
    border: 1px solid rgba(250,40,81,0.04);
    bottom: 20%; right: 5%;
    animation: hFloat6 20s ease-in-out infinite;
    opacity: 1;
}
.hero-shapes .s18 {
    width: 8px; height: 8px;
    background: rgba(255,193,7,0.35);
    bottom: 30%; right: 28%;
    animation: hFloat5 10s ease-in-out 3s infinite;
    opacity: 1;
}
.hero-shapes .s19 {
    width: 32px; height: 32px;
    border: 1.5px solid rgba(255,193,7,0.07);
    border-radius: 6px;
    bottom: 28%; left: 38%;
    animation: hRotate2 14s linear infinite;
    opacity: 1;
}
/* ── Row 5: Bottom area ── */
.hero-shapes .s20 {
    width: 5px; height: 5px;
    background: rgba(250,40,81,0.2);
    bottom: 15%; left: 55%;
    animation: hFloat3 8s ease-in-out 2s infinite;
    opacity: 1;
}
.hero-shapes .s21 {
    width: 220px; height: 220px;
    border: 1.5px solid rgba(250,40,81,0.04);
    bottom: -50px; right: -30px;
    animation: hFloat2 18s ease-in-out infinite;
    opacity: 1;
}
.hero-shapes .s22 {
    width: 10px; height: 10px;
    background: rgba(250,40,81,0.2);
    bottom: 12%; left: 8%;
    animation: hFloat4 6s ease-in-out infinite;
    opacity: 1;
}
.hero-shapes .s23 {
    width: 7px; height: 7px;
    background: rgba(255,193,7,0.25);
    bottom: 8%; right: 42%;
    animation: hFloat5 9s ease-in-out 1s infinite;
    opacity: 1;
}
.hero-shapes .s24 {
    width: 45px; height: 45px;
    border: 1.5px solid rgba(250,40,81,0.06);
    border-radius: 10px;
    bottom: 10%; left: 28%;
    animation: hRotate1 16s linear infinite;
    opacity: 1;
}

/* ── Shape Keyframes ── */
@keyframes hFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 18px) scale(1.06); }
}
@keyframes hFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(18px, -12px) scale(1.04); }
    66% { transform: translate(-10px, 8px) scale(0.96); }
}
@keyframes hFloat3 {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-18px); opacity: 1; }
}
@keyframes hFloat4 {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(12px, -14px); opacity: 1; }
}
@keyframes hFloat5 {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    25% { transform: translate(-8px, 10px); opacity: 0.8; }
    50% { transform: translate(6px, -12px); opacity: 1; }
    75% { transform: translate(10px, 5px); opacity: 0.7; }
}
@keyframes hFloat6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-12px, -16px) rotate(6deg); }
}
@keyframes hRotate1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes hRotate2 {
    from { transform: rotate(0deg) translate(0, 0); }
    25% { transform: rotate(90deg) translate(8px, -6px); }
    50% { transform: rotate(180deg) translate(0, 0); }
    75% { transform: rotate(270deg) translate(-8px, 6px); }
    to { transform: rotate(360deg) translate(0, 0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

/* ── Responsive ── */
@media (max-width:992px) {
    .hero-section h1 { font-size: 2.2rem; }
    .hero-section { min-height: auto; }
    .section-title { font-size: 1.85rem; }
    .hero-shapes .s1 { width: 180px; height: 180px; }
    .hero-shapes .s9, .hero-shapes .s17, .hero-shapes .s21 { display: none; }
}
@media (max-width:768px) {
    .hero-section h1 { font-size: 1.85rem; }
    .hero-section .lead { font-size: 0.95rem; }
    .section-title { font-size: 1.5rem; }
    :root { --radius-lg: 14px; }
    .hero-stat-number { font-size: 1.65rem; }
    .contact-card { padding: 1.5rem 1rem; }
    .hero-shapes .s1, .hero-shapes .s5, .hero-shapes .s9,
    .hero-shapes .s11, .hero-shapes .s15, .hero-shapes .s17,
    .hero-shapes .s21 { display: none; }
}
