/* ==========================================================================
   ETIKETOCHKA — BOMBA CUSTOM DESIGN
   ========================================================================== */

:root {
    /* === ETIKETOCHKA: gold + dark teal === */
    --primary: #D4AF37;
    --primary-dark: #B8941F;
    --primary-light: #E8C547;
    --secondary: #0F2E2E;
    --secondary-dark: #0A2222;
    --accent: #F5C842;
    --success: #06d6a0;
    --light: #FAF7F0;
    --dark: #0F2E2E;
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #E8C547 50%, #F5C842 100%);
    --gradient-dark: linear-gradient(135deg, #0F2E2E 0%, #163838 50%, #1F4A4A 100%);
    --gradient-mesh: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(15, 46, 46, 0.05) 100%);
    --shadow-sm: 0 2px 8px rgba(15, 46, 46, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 46, 46, 0.12);
    --shadow-lg: 0 20px 60px rgba(15, 46, 46, 0.18);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Smooth Base ========== */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 50px 0; }

/* ========== Gradient Text ========== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ========== Hero — Premium Animated ========== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
    isolation: isolate;
}
.hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(255,94,20,0.25), transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(255,209,102,0.15), transparent 60%);
    z-index: -1;
    animation: heroGlow 12s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { transform: scale(1) rotate(0); opacity: 0.6; }
    100% { transform: scale(1.2) rotate(8deg); opacity: 1; }
}
.hero-premium .floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatBlob 16s ease-in-out infinite;
}
.hero-premium .floating-shape.s1 { width: 350px; height: 350px; background: var(--primary); top: 10%; right: 5%; }
.hero-premium .floating-shape.s2 { width: 280px; height: 280px; background: var(--accent); bottom: 5%; left: 10%; animation-delay: -8s; }
.hero-premium .floating-shape.s3 { width: 200px; height: 200px; background: #6e72ff; top: 40%; left: 40%; animation-delay: -4s; }

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 40px) scale(0.95); }
}

.hero-premium .hero-content { position: relative; z-index: 2; color: #fff; }
.hero-premium .hero-suptitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    animation: slideInDown 0.8s ease;
}
.hero-premium .hero-suptitle::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-premium .hero-mega-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 28px;
    animation: slideInUp 0.9s ease 0.1s both;
}
.hero-premium .hero-mega-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-premium .hero-mega-title .highlight::after {
    content: '';
    position: absolute;
    left: 0; bottom: 5px;
    width: 100%; height: 12px;
    background: rgba(255, 94, 20, 0.25);
    z-index: -1;
    border-radius: 12px;
}

.hero-premium .hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    max-width: 600px;
    margin-bottom: 40px;
    animation: slideInUp 0.9s ease 0.2s both;
}
.hero-premium .hero-btns { display: flex; gap: 18px; flex-wrap: wrap; animation: slideInUp 0.9s ease 0.3s both; }

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Premium buttons */
.btn-bomb {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 100px;
    border: none;
    color: #fff;
    background: var(--gradient-primary);
    background-size: 200% auto;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: var(--shadow-glow);
    z-index: 1;
}
.btn-bomb:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 94, 20, 0.5);
    color: #fff;
}
.btn-bomb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.25);
    transform: translateX(-100%);
    transition: transform 0.5s var(--transition);
    z-index: -1;
}
.btn-bomb:hover::before { transform: translateX(0); }

.btn-bomb-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    box-shadow: none;
    padding: 14px 34px;
}
.btn-bomb-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

/* Hero stats */
.hero-stats {
    display: flex; gap: 50px; margin-top: 60px;
    animation: slideInUp 0.9s ease 0.4s both;
}
.hero-stats .stat-item .num {
    font-size: 2.5rem; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stats .stat-item .lbl {
    font-size: 14px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px;
}

/* ========== Section Title ========== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.section-title .sub {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: rgba(255, 94, 20, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-title .sub::before, .section-title .sub::after {
    content: ''; width: 20px; height: 2px; background: var(--primary);
}
.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--secondary);
    margin: 0;
}
.section-title p {
    max-width: 700px;
    margin: 18px auto 0;
    color: #6b6b8a;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========== Feature Cards (Why us) ========== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card {
    position: relative;
    padding: 36px 28px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--transition);
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(0,0,0,0.04);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .feature-icon {
    width: 70px; height: 70px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--gradient-mesh);
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 22px;
    transition: all 0.4s var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotate(-6deg) scale(1.1);
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}
.feature-card p { color: #6b6b8a; line-height: 1.7; margin: 0; }

/* ========== Stat Bar ========== */
.stats-bar {
    background: var(--gradient-dark);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.stats-bar::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,94,20,0.2), transparent 70%);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px;
    position: relative; z-index: 1;
}
.stat-card { text-align: center; padding: 10px; }
.stat-card .icon {
    width: 70px; height: 70px;
    margin: 0 auto 16px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--accent);
    font-size: 28px;
}
.stat-card .number {
    font-size: 3rem; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-card .label { color: rgba(255,255,255,0.7); font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 10px; }

/* ========== Product Card ========== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.product-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.product-card .pc-img {
    position: relative;
    padding-bottom: 75%;
    background: linear-gradient(135deg, #f5f5fa 0%, #ececf6 100%);
    overflow: hidden;
}
.product-card .pc-img img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}
.product-card:hover .pc-img img { transform: scale(1.1); }
.product-card .pc-badges {
    position: absolute; top: 14px; left: 14px;
    display: flex; flex-direction: column; gap: 6px;
}
.pc-badge {
    padding: 5px 12px; border-radius: 100px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; color: #fff;
}
.pc-badge.new { background: var(--success); }
.pc-badge.bs { background: var(--primary); }
.pc-badge.sale { background: #ef4444; }
.product-card .pc-quick {
    position: absolute; top: 14px; right: 14px;
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; transform: translateX(20px);
    transition: all 0.4s var(--transition);
}
.product-card:hover .pc-quick { opacity: 1; transform: translateX(0); }
.pc-quick a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: #fff; color: var(--secondary);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--transition);
}
.pc-quick a:hover { background: var(--primary); color: #fff; transform: rotate(-8deg); }
.product-card .pc-body { padding: 22px; }
.product-card .pc-cat { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.product-card .pc-title {
    font-size: 1.15rem; font-weight: 700;
    color: var(--secondary);
    margin: 6px 0 12px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card .pc-title a { color: inherit; }
.product-card .pc-title a:hover { color: var(--primary); }
.product-card .pc-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px dashed #ececf6;
}
.product-card .pc-price { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.product-card .pc-price small { font-size: 0.85rem; color: #999; text-decoration: line-through; margin-right: 8px; font-weight: 500; }
.product-card .pc-cta {
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    transition: transform 0.3s var(--transition);
}
.product-card .pc-cta:hover { transform: rotate(45deg) scale(1.1); color: #fff; }

/* ========== Category Pills ========== */
.cat-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.cat-pills .pill {
    padding: 10px 22px;
    border-radius: 100px;
    background: #fff;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #ececf6;
    transition: all 0.3s var(--transition);
    cursor: pointer;
}
.cat-pills .pill:hover, .cat-pills .pill.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

/* ========== Project Card ========== */
.project-mega { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.project-mega img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--transition); }
.project-mega:hover img { transform: scale(1.08); }
.project-mega .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,15,30,0.95) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 30px;
    color: #fff;
    transform: translateY(100px); opacity: 0;
    transition: all 0.4s var(--transition);
}
.project-mega:hover .overlay { transform: translateY(0); opacity: 1; }
.project-mega .overlay .cat { font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; }
.project-mega .overlay h3 { font-size: 1.4rem; font-weight: 700; margin: 8px 0 0; }
.project-mega .overlay h3 a { color: #fff; }

/* ========== Testimonial Card ========== */
.testi-bomb {
    position: relative;
    padding: 40px 30px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--transition);
}
.testi-bomb::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 24px;
    font-size: 7rem; font-family: 'Georgia', serif;
    color: rgba(255, 94, 20, 0.1); line-height: 1;
}
.testi-bomb:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-bomb .text { font-size: 1.02rem; line-height: 1.7; color: #555; margin-bottom: 26px; position: relative; }
.testi-bomb .stars { color: #ffb800; margin-bottom: 16px; font-size: 14px; }
.testi-bomb .person { display: flex; align-items: center; gap: 14px; }
.testi-bomb .person img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); }
.testi-bomb .person h4 { margin: 0; font-size: 1.05rem; font-weight: 700; color: var(--secondary); }
.testi-bomb .person span { font-size: 13px; color: #888; }

/* ========== Team Card ========== */
.team-bomb {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--secondary);
    transition: all 0.4s var(--transition);
}
.team-bomb:hover { transform: translateY(-8px); }
.team-bomb .tb-img { aspect-ratio: 3/4; overflow: hidden; }
.team-bomb .tb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition); }
.team-bomb:hover .tb-img img { transform: scale(1.06); }
.team-bomb .tb-info {
    position: absolute;
    bottom: 16px; left: 16px; right: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.4s var(--transition);
}
.team-bomb .tb-info h3 { margin: 0; font-size: 1.15rem; font-weight: 700; color: var(--secondary); }
.team-bomb .tb-info span { color: var(--primary); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.team-bomb .tb-social {
    display: flex; justify-content: center; gap: 10px;
    margin-top: 12px;
    max-height: 0; opacity: 0;
    transition: all 0.4s var(--transition);
    overflow: hidden;
}
.team-bomb:hover .tb-social { max-height: 50px; opacity: 1; }
.team-bomb .tb-social a {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gradient-primary); color: #fff;
    border-radius: 50%;
    font-size: 12px;
    transition: transform 0.3s var(--transition);
}
.team-bomb .tb-social a:hover { transform: translateY(-3px); color: #fff; }

/* ========== About / Image Composite ========== */
.about-imgs {
    position: relative;
    aspect-ratio: 1;
    max-width: 540px;
}
.about-imgs .ai1, .about-imgs .ai2, .about-imgs .ai3 {
    position: absolute;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.about-imgs .ai1 { top: 0; left: 0; width: 60%; height: 75%; }
.about-imgs .ai2 { bottom: 0; right: 0; width: 55%; height: 60%; border: 8px solid #fff; }
.about-imgs .ai3 { top: 8%; right: 0; width: 40%; height: 45%; }
.about-imgs img { width: 100%; height: 100%; object-fit: cover; }

.about-imgs .floating-badge {
    position: absolute;
    bottom: -10px; left: 50%; transform: translateX(-50%);
    padding: 16px 28px;
    background: var(--gradient-primary);
    color: #fff; border-radius: 100px;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    z-index: 3;
    display: flex; align-items: center; gap: 10px;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ========== FAQ ========== */
.faq-bomb .faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s var(--transition);
}
.faq-bomb .faq-item.open { box-shadow: var(--shadow-md); }
.faq-bomb .faq-q {
    padding: 22px 26px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    font-weight: 700; font-size: 1.05rem; color: var(--secondary);
}
.faq-bomb .faq-q .icon {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gradient-mesh);
    color: var(--primary);
    border-radius: 50%;
    transition: transform 0.3s var(--transition);
}
.faq-bomb .faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--gradient-primary); color: #fff; }
.faq-bomb .faq-a {
    max-height: 0; padding: 0 26px;
    overflow: hidden;
    color: #555; line-height: 1.7;
    transition: all 0.4s var(--transition);
}
.faq-bomb .faq-item.open .faq-a { max-height: 400px; padding: 0 26px 22px; }

/* ========== Order Configurator ========== */
.cfg-tabs {
    display: flex; gap: 10px;
    background: #f3f3f8;
    padding: 6px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.cfg-tabs button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s var(--transition);
}
.cfg-tabs button.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.cfg-row {
    display: grid; grid-template-columns: 140px 1fr;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--transition);
}
.cfg-row:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cfg-row .cfg-label { font-weight: 700; color: var(--secondary); font-size: 14px; }
.cfg-row select, .cfg-row input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e6e6f0;
    border-radius: var(--radius-sm);
    background: #f8f8fc;
    font-size: 14px;
    color: var(--secondary);
    transition: all 0.2s var(--transition);
}
.cfg-row select:focus, .cfg-row input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

.cfg-result {
    margin-top: 20px;
    padding: 24px;
    background: var(--gradient-dark);
    border-radius: var(--radius-md);
    color: #fff;
    display: flex; align-items: center; justify-content: space-between;
}
.cfg-result .label { font-size: 14px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.cfg-result .price {
    font-size: 2.2rem; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Contact Page ========== */
.contact-info-card {
    padding: 32px 28px;
    background: #fff;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--transition);
    height: 100%;
}
.contact-info-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.contact-info-card .ic {
    width: 80px; height: 80px;
    margin: 0 auto 22px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(255,94,20,0.35);
}
.contact-info-card h4 { color: var(--secondary); font-weight: 700; margin-bottom: 8px; }
.contact-info-card a { color: #555; }
.contact-info-card a:hover { color: var(--primary); }

.contact-form-card {
    padding: 50px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.contact-form-card .form-group {
    position: relative; margin-bottom: 18px;
}
.contact-form-card .form-control {
    height: 56px;
    padding: 0 22px;
    border: 1.5px solid #e6e6f0;
    border-radius: var(--radius-sm);
    background: #f8f8fc;
    transition: all 0.2s var(--transition);
}
.contact-form-card textarea.form-control { height: auto; padding: 18px 22px; min-height: 130px; }
.contact-form-card .form-control:focus {
    outline: none; box-shadow: none;
    background: #fff;
    border-color: var(--primary);
}

/* ========== Breadcrumb ========== */
.bc-bomb {
    position: relative;
    padding: 140px 0 90px;
    background: var(--gradient-dark);
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.bc-bomb::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,94,20,0.3), transparent 60%);
}
.bc-bomb h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800;
    margin-bottom: 14px;
    position: relative;
}
.bc-bomb .crumbs { position: relative; }
.bc-bomb .crumbs a, .bc-bomb .crumbs span {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 100px;
    color: #fff;
    margin: 0 4px;
    font-size: 14px;
}
.bc-bomb .crumbs a:hover { background: var(--primary); }

/* ========== Header / Nav (override) ========== */
.as-header { position: relative; z-index: 50; }
.as-header.scrolled .menu-area {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
}
.main-menu ul li a {
    position: relative;
    font-weight: 600;
}
.main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%;
    width: 0; height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: all 0.3s var(--transition);
    transform: translateX(-50%);
}
.main-menu ul li a:hover::after, .main-menu ul li.active a::after { width: 70%; }

/* ========== Footer Bomb ========== */
.footer-bomb {
    background: var(--gradient-dark);
    color: rgba(255,255,255,0.7);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}
.footer-bomb::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer-bomb h4.widget-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 26px;
    position: relative;
    padding-bottom: 14px;
}
.footer-bomb h4.widget-title::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}
.footer-bomb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-bomb a:hover { color: var(--primary); }
.footer-bomb ul { list-style: none; padding: 0; margin: 0; }
.footer-bomb ul li { margin-bottom: 12px; }
.footer-bomb ul li a:hover { padding-left: 6px; }
.footer-bomb .f-social {
    display: flex; gap: 10px; margin-top: 24px;
}
.footer-bomb .f-social a {
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s var(--transition);
}
.footer-bomb .f-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-4px);
    color: #fff;
}
.footer-bomb .footer-copy {
    margin-top: 70px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
    text-align: center;
}
.footer-bomb .newsletter-form {
    display: flex; gap: 0; margin-top: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 4px;
}
.footer-bomb .newsletter-form input {
    flex: 1;
    border: none; background: transparent;
    padding: 10px 18px;
    color: #fff;
    outline: none;
}
.footer-bomb .newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.footer-bomb .newsletter-form button {
    border: none;
    padding: 10px 22px;
    border-radius: 100px;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}
.footer-bomb .newsletter-form button:hover { opacity: 0.9; }

/* ========== Floating CTA ========== */
.floating-cta {
    position: fixed;
    right: 24px; bottom: 24px;
    z-index: 99;
    display: flex; flex-direction: column; gap: 12px;
}
.floating-cta a {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s var(--transition);
    position: relative;
}
.floating-cta a.tg { background: #229ED9; }
.floating-cta a.wa { background: #25D366; }
.floating-cta a.ph { background: var(--gradient-primary); }
.floating-cta a:hover { transform: scale(1.1) rotate(-6deg); color: #fff; }
.floating-cta a::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid currentColor;
    animation: ringPulse 2s infinite;
}
@keyframes ringPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ========== Brand / Partner Slider ========== */
.brand-bomb {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}
.brand-track {
    display: flex; gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.brand-track img {
    height: 60px; opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s var(--transition);
}
.brand-track img:hover { opacity: 1; filter: grayscale(0%); }

/* ========== Blog Card Modern ========== */
.blog-bomb {
    background: #fff; border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all 0.4s var(--transition);
}
.blog-bomb:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-bomb .bb-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.blog-bomb .bb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition); }
.blog-bomb:hover .bb-img img { transform: scale(1.06); }
.blog-bomb .bb-date {
    position: absolute; top: 14px; left: 14px;
    padding: 6px 14px; background: var(--gradient-primary); color: #fff;
    border-radius: 100px; font-size: 12px; font-weight: 700;
}
.blog-bomb .bb-body { padding: 24px; }
.blog-bomb .bb-meta { font-size: 13px; color: #888; margin-bottom: 10px; }
.blog-bomb .bb-meta i { color: var(--primary); margin-right: 5px; }
.blog-bomb .bb-title {
    font-size: 1.15rem; font-weight: 700; color: var(--secondary);
    margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-bomb .bb-title a { color: inherit; }
.blog-bomb .bb-title a:hover { color: var(--primary); }
.blog-bomb .bb-excerpt { color: #6b6b8a; line-height: 1.6; font-size: 14px; }
.blog-bomb .bb-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; margin-top: 14px; }
.blog-bomb .bb-link:hover { gap: 12px; }

/* ========== Pagination ========== */
.pg-bomb { display: flex; justify-content: center; gap: 8px; margin-top: 50px; flex-wrap: wrap; }
.pg-bomb a, .pg-bomb span {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--secondary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--transition);
}
.pg-bomb a:hover, .pg-bomb .active span {
    background: var(--gradient-primary); color: #fff;
    transform: translateY(-3px);
}

/* ========== Messages / Alerts ========== */
.alert-bomb {
    padding: 16px 22px;
    border-radius: var(--radius-sm);
    background: #fff;
    border-left: 4px solid var(--success);
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
}
.alert-bomb.error { border-left-color: #ef4444; }
.alert-bomb i { font-size: 24px; color: var(--success); }
.alert-bomb.error i { color: #ef4444; }

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .hero-premium { min-height: 90vh; padding: 120px 0 80px; }
    .hero-stats { gap: 26px; }
    .contact-form-card { padding: 30px; }
    .about-imgs { max-width: 100%; margin: 0 auto 40px; }
}
@media (max-width: 575px) {
    .cfg-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 18px; }
    .hero-stats .stat-item .num { font-size: 1.8rem; }
    .section-pad { padding: 60px 0; }
}

/* ========== Scroll reveal ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Quick utility */
.bg-mesh { background: var(--gradient-mesh); }
.rounded-bomb { border-radius: var(--radius-md); }
