/* =============================================
   TATTOO STUDIO - DARK BLOOD THEME
   Ana Renk: Siyah (#050505) + Kan Kırmızısı (#ff003c)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Rajdhani:wght@400;500;600;700&family=Bebas+Neue&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    /* Ana Renkler */
    --blood: #ff003c;
    --blood-dark: #cc0030;
    --blood-glow: rgba(255, 0, 60, 0.4);
    
    /* Arkaplan Renkleri */
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-hover: #1a1a1a;
    
    /* Sınır Renkleri */
    --border-dark: #1a1a1a;
    --border-medium: #222222;
    --border-light: #333333;
    
    /* Metin Renkleri */
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #888888;
    --text-muted: #555555;
    
    /* Fontlar */
    --font-display: 'Teko', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-accent: 'Bebas Neue', cursive;
    
    /* Geçişler */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Gölgeler */
    --shadow-blood: 0 0 30px var(--blood-glow);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--blood);
    border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--blood-dark);
}

/* Selection */
::selection {
    background: var(--blood);
    color: white;
}

/* Links */
a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--blood);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-blood { color: var(--blood) !important; }
.bg-blood { background-color: var(--blood) !important; }
.bg-darker { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }

.tracking-widest { letter-spacing: 4px; }
.tracking-wide { letter-spacing: 2px; }

.border-blood { border-color: var(--blood) !important; }

/* =============================================
   NOISE OVERLAY
   ============================================= */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark);
    padding: 15px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white) !important;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-brand .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--blood);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.navbar-brand .logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.navbar-brand .brand-dot {
    color: var(--blood);
    font-size: 2.5rem;
    line-height: 0;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-gray) !important;
    letter-spacing: 1px;
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition-normal);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--blood);
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-white) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 30px;
}

/* Cart Icon */
.nav-cart {
    position: relative;
    color: var(--text-white) !important;
    font-size: 1.2rem;
}

.nav-cart .cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--blood);
    color: white;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Navbar CTA Button */
.btn-nav-cta {
    background: var(--blood);
    color: white !important;
    padding: 12px 25px !important;
    font-weight: 700;
    letter-spacing: 1px;
    clip-path: polygon(8% 0, 100% 0, 100% 70%, 92% 100%, 0 100%, 0 30%);
    transition: var(--transition-normal);
}

.btn-nav-cta:hover {
    background: white;
    color: var(--bg-primary) !important;
    box-shadow: var(--shadow-blood);
}

/* Mobile Toggle */
.navbar-toggler {
    border: 1px solid var(--border-light);
    padding: 8px 12px;
}

.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(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: grayscale(50%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: grayscale(100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(5, 5, 5, 0.95) 0%, 
        rgba(5, 5, 5, 0.7) 50%, 
        rgba(5, 5, 5, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--blood);
    color: var(--blood);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 0.95;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-title .highlight {
    color: var(--blood);
    text-shadow: 0 0 30px var(--blood-glow);
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Hero Social */
.hero-social {
    position: absolute;
    right: 40px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.hero-social a {
    color: var(--text-gray);
    font-size: 0.8rem;
    writing-mode: vertical-rl;
    letter-spacing: 2px;
    transition: var(--transition-normal);
}

.hero-social a:hover {
    color: var(--blood);
}

.hero-social .line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--blood), transparent);
}

/* Hero Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.scroll-indicator .mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--blood);
    border-radius: 2px;
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-blood {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--blood);
    color: white;
    padding: 16px 35px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    clip-path: polygon(8% 0, 100% 0, 100% 70%, 92% 100%, 0 100%, 0 30%);
}

.btn-blood:hover {
    background: white;
    color: var(--bg-primary);
    box-shadow: var(--shadow-blood);
    transform: translateY(-3px);
}

.btn-blood-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-blood-outline:hover {
    border-color: var(--blood);
    color: var(--blood);
    background: rgba(255, 0, 60, 0.1);
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section-badge {
    display: inline-block;
    color: var(--blood);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--blood);
    margin: 20px 0;
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrapper {
    background: var(--blood);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-1deg) scale(1.02);
    margin: -20px 0;
    position: relative;
    z-index: 5;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bg-primary);
    letter-spacing: 2px;
    padding: 0 50px;
}

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

/* =============================================
   FEATURE CARDS
   ============================================= */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--blood);
    transition: var(--transition-slow);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--blood);
    box-shadow: var(--shadow-card);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 60, 0.1);
    border: 1px solid rgba(255, 0, 60, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--blood);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--blood);
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-section {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
                url('https://images.unsplash.com/photo-1598371839696-5c5bb00bdc28?q=80&w=1920') center/cover fixed;
    padding: 100px 0;
}

.process-step {
    text-align: center;
    padding: 30px;
    transition: var(--transition-normal);
}

.process-step:hover .step-num {
    color: var(--blood);
    text-shadow: 0 0 30px var(--blood-glow);
}

.step-num {
    font-family: var(--font-accent);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    transition: var(--transition-normal);
}

.process-step h5 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 20px 0 10px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    overflow: hidden;
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--blood);
    box-shadow: var(--shadow-card);
}

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--blood);
    color: white;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h5 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.product-price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blood);
}

/* =============================================
   GALLERY GRID
   ============================================= */
.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--border-medium);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
}

.gallery-overlay .view-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--blood);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blood);
    transform: scale(0);
    transition: var(--transition-normal) 0.1s;
}

.gallery-item:hover .gallery-overlay .view-icon {
    transform: scale(1);
}

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    overflow: hidden;
    transition: var(--transition-normal);
}

.blog-card:hover {
    border-color: var(--blood);
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--blood);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.blog-card:hover .blog-content h4 {
    color: var(--blood);
}

.blog-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--blood);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-medium);
    border-bottom: 1px solid var(--border-medium);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--blood-glow) 0%, transparent 70%);
    opacity: 0.3;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* =============================================
   FORM STYLES
   ============================================= */
.form-cyber {
    position: relative;
    margin-bottom: 25px;
}

.form-cyber input,
.form-cyber textarea,
.form-cyber select {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-normal);
}

.form-cyber label {
    position: absolute;
    top: 18px;
    left: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    transition: var(--transition-normal);
}

.form-cyber input:focus ~ label,
.form-cyber input:not(:placeholder-shown) ~ label,
.form-cyber textarea:focus ~ label,
.form-cyber textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--blood);
}

.form-cyber .focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blood);
    transition: var(--transition-normal);
}

.form-cyber input:focus ~ .focus-line,
.form-cyber textarea:focus ~ .focus-line {
    width: 100%;
}

.form-cyber select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-medium);
    padding-top: 80px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
}

.footer-brand .dot {
    color: var(--blood);
    font-size: 2.5rem;
}

.footer-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 15px;
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--blood);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 10px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.footer-contact i {
    color: var(--blood);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--blood);
    border-color: var(--blood);
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    background: var(--bg-secondary);
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .hero-social {
        display: none;
    }
    
    .navbar-nav {
        padding: 20px 0;
        background: var(--bg-secondary);
        margin-top: 15px;
        border: 1px solid var(--border-medium);
    }
    
    .navbar-nav .nav-link {
        padding: 15px 20px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-blood,
    .btn-blood-outline {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content .d-flex {
        flex-direction: column;
        align-items: center;
    }
}
