/* ==========================================
   RESET & BASE - RED/BLACK THEME
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    padding-top: 85px;
    overflow-x: hidden;
}

::selection {
    background: #ff0000;
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cc0000;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==========================================
   GLASS HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 0, 0, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header.scrolled {
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-bottom: 1px solid rgba(255, 0, 0, 0.25);
    box-shadow: 0 8px 40px rgba(255, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: #ff0000;
}

/* ===== NAVIGATION ===== */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ff0000;
    font-weight: 600;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    color: #ff0000;
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-red {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-red::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 20s ease-in-out infinite;
}

.hero-red::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite reverse;
}

@keyframes floatRed {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== HERO TEXT ===== */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    width: fit-content;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.1); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 0, 0.2); }
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.text-white { color: #ffffff; }
.text-red { 
    color: #ff0000; 
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
}

.hero-summary {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 500px;
}

/* ===== HERO BUTTONS ===== */
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-red {
    background: #ff0000;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
    background: #cc0000;
}

.btn-outline-red {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-outline-red:hover {
    transform: translateY(-3px);
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.05);
    color: #ff0000;
}

/* ===== HERO STATS ===== */
.hero-stats-red {
    display: flex;
    gap: 3rem;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-red {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff0000;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   LAPTOP SCREEN ONLY
   ========================================== */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

.laptop-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.laptop-screen {
    width: 100%;
    height: 380px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 22px;
    border: 3px solid #2a2a2a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.08);
}

.screen-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px;
    text-align: center;
}

.screen-icons {
    display: flex;
    gap: 25px;
    margin-bottom: 12px;
}

.screen-icons i {
    font-size: 3rem;
    color: #ff0000;
    animation: iconPulse 2s ease-in-out infinite;
}

.screen-icons i:nth-child(2) { animation-delay: 0.3s; }
.screen-icons i:nth-child(3) { animation-delay: 0.6s; }

@keyframes iconPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
        transform: scale(1.05);
    }
}

.screen-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.screen-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.screen-lines span {
    display: block;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    animation: lineTyping 3s ease-in-out infinite;
}

.screen-lines span:nth-child(1) { width: 60px; }
.screen-lines span:nth-child(2) { width: 80px; animation-delay: 0.5s; }
.screen-lines span:nth-child(3) { width: 100px; animation-delay: 1s; }
.screen-lines span:nth-child(4) { width: 70px; animation-delay: 1.5s; }

@keyframes lineTyping {
    0%, 100% { width: 30px; opacity: 0.3; }
    50% { width: 100px; opacity: 1; }
}

.screen-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.screen-tags span {
    padding: 5px 18px;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.12);
    border-radius: 50px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.screen-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.04) 0%, transparent 60%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ===== FLOATING ELEMENTS ===== */
.float-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    min-width: 60px;
    min-height: 60px;
    animation: floatAround 6s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 10;
}

.float-float:hover {
    transform: scale(1.15);
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.float-float i {
    font-size: 1.6rem;
    color: #ff0000;
}

.float-float span {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.float-1 { top: -15%; right: -12%; animation-delay: 0s; }
.float-2 { bottom: 10%; right: -18%; animation-delay: 1.2s; }
.float-3 { top: 15%; left: -16%; animation-delay: 2.4s; }
.float-4 { top: -8%; left: 2%; animation-delay: 0.6s; }
.float-5 { bottom: 35%; right: -14%; animation-delay: 1.8s; }
.float-6 { bottom: 5%; left: -10%; animation-delay: 3s; }

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-14px) rotate(3deg); }
    50% { transform: translateY(10px) rotate(-3deg); }
    75% { transform: translateY(-6px) rotate(2deg); }
}

/* ==========================================
   WHO WE ARE SECTION
   ========================================== */
.who-we-are {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.who-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.who-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.who-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.who-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.who-title .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.who-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.who-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.who-description p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.8;
}

.who-highlights {
    display: flex;
    gap: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff0000;
}

.highlight-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.who-content .btn {
    align-self: flex-start;
}

.who-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.overlay-content i {
    font-size: 4rem;
    color: #ff0000;
    transition: all 0.3s ease;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 60px rgba(255, 0, 0, 0.6);
    }
}

.overlay-content span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: floatBadge 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

.floating-badge i {
    font-size: 1.8rem;
    color: #ff0000;
}

.floating-badge strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.floating-badge span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ==========================================
   WHAT WE OFFER SECTION
   ========================================== */
.what-we-offer {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.what-we-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.offer-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.offer-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.offer-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.offer-title .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.offer-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.offer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.15);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.05);
}

.offer-icon-wrapper {
    margin-bottom: 1.5rem;
}

.offer-icon-bg {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff0000;
    transition: all 0.4s ease;
}

.offer-card:hover .offer-icon-bg {
    background: rgba(255, 0, 0, 0.1);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.15);
}

.offer-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.offer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.offer-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.offer-features li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-features li i {
    color: #ff0000;
    font-size: 0.85rem;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 0.5rem;
}

.offer-btn:hover {
    gap: 15px;
    color: #cc0000;
}

/* ==========================================
   HAPPY CUSTOMERS - SLIDING LOGOS
   ========================================== */
.happy-customers {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.happy-customers::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.customers-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.customers-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.customers-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.customers-title .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.customers-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.logo-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.logo-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(90deg, #0a0a0a, transparent);
    z-index: 5;
}

.logo-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(270deg, #0a0a0a, transparent);
    z-index: 5;
}

.logo-slider {
    display: flex;
    animation: slideLogos 20s linear infinite;
    width: max-content;
}

.logo-slide {
    display: flex;
    gap: 2.5rem;
    padding: 0 1.5rem;
}

.logo-item {
    width: 140px;
    height: 100px;
    min-width: 140px;
    min-height: 100px;
    max-width: 140px;
    max-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.05);
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: grayscale(100%) brightness(1.5);
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

@keyframes slideLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FEATURED IN ===== */
.featured-in {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    z-index: 1;
}

.featured-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.featured-item {
    width: 100px;
    height: 50px;
    min-width: 100px;
    min-height: 50px;
    max-width: 100px;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.featured-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 0, 0.1);
    transform: translateY(-3px);
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.4s ease;
}

.featured-item:hover img {
    filter: grayscale(0%) brightness(1);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media screen and (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        align-items: center;
    }

    .hero-summary {
        max-width: 100%;
    }

    .hero-badge-red {
        align-self: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats-red {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .laptop-wrapper {
        max-width: 450px;
    }

    .laptop-screen {
        height: 320px;
    }

    .screen-icons i {
        font-size: 2.5rem;
    }

    .float-float {
        min-width: 50px;
        min-height: 50px;
        padding: 8px 12px;
    }

    .float-float i {
        font-size: 1.3rem;
    }

    .float-2, .float-5, .float-6 {
        display: none;
    }

    .who-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .who-content {
        text-align: center;
        align-items: center;
    }

    .who-badge {
        align-self: center;
    }

    .who-highlights {
        justify-content: center;
    }

    .who-content .btn {
        align-self: center;
    }

    .image-container {
        max-width: 450px;
        margin: 0 auto;
    }

    .image-container img {
        height: 380px;
    }

    .floating-badge {
        right: 10px;
        bottom: 10px;
        padding: 14px 18px;
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .offer-title {
        font-size: 2.6rem;
    }

    .offer-card {
        padding: 2rem 1.8rem;
    }

    .logo-slide {
        gap: 2rem;
    }

    .logo-item {
        width: 120px;
        height: 90px;
        min-width: 120px;
        min-height: 90px;
        max-width: 120px;
        max-height: 90px;
    }

    .logo-slider-wrapper::before,
    .logo-slider-wrapper::after {
        width: 80px;
    }

    .featured-logos {
        gap: 2rem;
    }

    .featured-item {
        width: 90px;
        height: 45px;
        min-width: 90px;
        min-height: 45px;
        max-width: 90px;
        max-height: 45px;
    }

    .who-title, .offer-title, .customers-title {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 75px;
    }

    .header {
        padding: 12px 0;
    }

    .hamburger {
        display: flex;
    }

    .social-icons {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        transition: left 0.4s ease;
        padding: 40px 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .hero-red {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-summary {
        font-size: 1rem;
    }

    .hero-stats-red {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .laptop-wrapper {
        max-width: 400px;
    }

    .laptop-screen {
        height: 280px;
        border-radius: 16px;
        border-width: 2px;
    }

    .screen-icons {
        gap: 16px;
    }

    .screen-icons i {
        font-size: 2.2rem;
    }

    .screen-title {
        font-size: 0.85rem;
    }

    .screen-tags {
        gap: 8px;
    }

    .screen-tags span {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .float-float {
        min-width: 42px;
        min-height: 42px;
        padding: 6px 10px;
    }

    .float-float i {
        font-size: 1.1rem;
    }

    .float-3, .float-4 {
        display: none;
    }

    .who-we-are, .what-we-offer, .happy-customers {
        padding: 60px 0;
    }

    .who-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .who-content {
        text-align: center;
        align-items: center;
    }

    .who-highlights {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .who-content .btn {
        align-self: center;
    }

    .image-container {
        max-width: 400px;
    }

    .image-container img {
        height: 300px;
    }

    .floating-badge {
        padding: 12px 16px;
        right: 5px;
        bottom: 5px;
        gap: 10px;
    }

    .floating-badge i {
        font-size: 1.4rem;
    }

    .floating-badge strong {
        font-size: 0.95rem;
    }

    .overlay-content i {
        font-size: 3rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 450px;
        margin: 0 auto;
    }

    .offer-title {
        font-size: 2.2rem;
    }

    .offer-subtitle {
        font-size: 1rem;
    }

    .offer-card {
        padding: 1.8rem 1.5rem;
    }

    .offer-icon-bg {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .offer-name {
        font-size: 1.2rem;
    }

    .customers-title {
        font-size: 2.2rem;
    }

    .logo-slide {
        gap: 1.2rem;
        padding: 0 0.8rem;
    }

    .logo-item {
        width: 100px;
        height: 80px;
        min-width: 100px;
        min-height: 80px;
        max-width: 100px;
        max-height: 80px;
        padding: 0.3rem;
        border-radius: 8px;
    }

    .logo-slider-wrapper::before,
    .logo-slider-wrapper::after {
        width: 50px;
    }

    .featured-in {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .featured-logos {
        gap: 1.5rem;
    }

    .featured-item {
        width: 80px;
        height: 40px;
        min-width: 80px;
        min-height: 40px;
        max-width: 80px;
        max-height: 40px;
        border-radius: 6px;
    }

    .logo-slider {
        animation: slideLogos 15s linear infinite;
    }

    .who-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-red {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .laptop-wrapper {
        max-width: 300px;
    }

    .laptop-screen {
        height: 220px;
        border-radius: 14px;
    }

    .screen-icons {
        gap: 12px;
    }

    .screen-icons i {
        font-size: 1.8rem;
    }

    .screen-title {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .screen-tags {
        gap: 5px;
    }

    .screen-tags span {
        font-size: 0.5rem;
        padding: 3px 10px;
    }

    .float-float {
        min-width: 34px;
        min-height: 34px;
        padding: 5px 7px;
        border-radius: 8px;
    }

    .float-float i {
        font-size: 0.85rem;
    }

    .float-1 {
        top: -6%;
        right: -3%;
    }

    .float-2 {
        display: none;
    }

    .who-we-are, .what-we-offer, .happy-customers {
        padding: 50px 0;
    }

    .who-wrapper {
        gap: 2rem;
    }

    .who-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .who-title {
        font-size: 2rem;
    }

    .who-subtitle {
        font-size: 0.95rem;
    }

    .who-description p {
        font-size: 0.9rem;
    }

    .who-highlights {
        gap: 1.5rem;
        padding: 0.8rem 0;
    }

    .highlight-number {
        font-size: 1.5rem;
    }

    .image-container {
        max-width: 100%;
    }

    .image-container img {
        height: 220px;
        border-radius: 14px;
    }

    .floating-badge {
        display: none;
    }

    .overlay-content i {
        font-size: 2.5rem;
    }

    .overlay-content span {
        font-size: 0.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .offer-header {
        margin-bottom: 2.5rem;
    }

    .offer-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .offer-title {
        font-size: 1.8rem;
    }

    .offer-subtitle {
        font-size: 0.9rem;
    }

    .offer-grid {
        gap: 1.5rem;
        max-width: 100%;
    }

    .offer-card {
        padding: 1.5rem 1.2rem;
        border-radius: 14px;
    }

    .offer-icon-bg {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        border-radius: 12px;
    }

    .offer-name {
        font-size: 1.1rem;
    }

    .offer-description {
        font-size: 0.85rem;
    }

    .offer-features li {
        font-size: 0.8rem;
        padding: 4px 0;
    }

    .offer-btn {
        font-size: 0.85rem;
    }

    .customers-header {
        margin-bottom: 2.5rem;
    }

    .customers-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .customers-title {
        font-size: 1.8rem;
    }

    .customers-subtitle {
        font-size: 0.9rem;
    }

    .logo-slide {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }

    .logo-item {
        width: 80px;
        height: 65px;
        min-width: 80px;
        min-height: 65px;
        max-width: 80px;
        max-height: 65px;
        padding: 0.2rem;
        border-radius: 6px;
    }

    .logo-slider-wrapper::before,
    .logo-slider-wrapper::after {
        width: 30px;
    }

    .featured-in {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }

    .featured-label {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .featured-logos {
        gap: 1rem;
    }

    .featured-item {
        width: 70px;
        height: 35px;
        min-width: 70px;
        min-height: 35px;
        max-width: 70px;
        max-height: 35px;
        border-radius: 4px;
        padding: 0.2rem 0.5rem;
    }

    .logo-slider {
        animation: slideLogos 12s linear infinite;
    }
}

@media screen and (max-width: 380px) {
    .logo-text {
        font-size: 1rem;
    }

    .logo-image {
        height: 30px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .laptop-wrapper {
        max-width: 250px;
    }

    .laptop-screen {
        height: 180px;
        border-radius: 12px;
    }

    .screen-icons i {
        font-size: 1.4rem;
    }

    .screen-icons {
        gap: 10px;
    }

    .screen-title {
        font-size: 0.6rem;
    }

    .screen-tags span {
        font-size: 0.4rem;
        padding: 2px 8px;
    }

    .float-float {
        min-width: 28px;
        min-height: 28px;
        padding: 3px 5px;
        border-radius: 6px;
    }

    .float-float i {
        font-size: 0.7rem;
    }

    .who-title, .offer-title, .customers-title {
        font-size: 1.5rem;
    }

    .logo-slide {
        gap: 0.5rem;
    }

    .logo-item {
        width: 65px;
        height: 55px;
        min-width: 65px;
        min-height: 55px;
        max-width: 65px;
        max-height: 55px;
        border-radius: 4px;
    }

    .logo-slider-wrapper::before,
    .logo-slider-wrapper::after {
        width: 20px;
    }

    .featured-logos {
        gap: 0.7rem;
    }

    .featured-item {
        width: 60px;
        height: 30px;
        min-width: 60px;
        min-height: 30px;
        max-width: 60px;
        max-height: 30px;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-image {
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.who-content {
    animation: fadeInUp 0.8s ease forwards;
}

.who-image {
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.offer-header {
    animation: fadeInUp 0.8s ease forwards;
}

.offer-card {
    animation: fadeInUp 0.8s ease forwards;
}

.offer-card:nth-child(1) { animation-delay: 0.1s; }
.offer-card:nth-child(2) { animation-delay: 0.3s; }
.offer-card:nth-child(3) { animation-delay: 0.5s; }

.customers-header {
    animation: fadeInUp 0.8s ease forwards;
}

.logo-slider-wrapper {
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.featured-in {
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

/* ========================================== */
/* SERVICES PAGE STYLES - COMPLETE            */
/* ========================================== */

/* ========================================== */
/* 1. SERVICES HERO                          */
/* ========================================== */

.services-hero {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 20s ease-in-out infinite;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
}

.hero-stat p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========================================== */
/* 2. SECTION HEADER                         */
/* ========================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff0000;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================== */
/* SERVICES GRID - COMPACT (NO SPACES)        */
/* ========================================== */

.services-main {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.services-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.services-main::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 20s ease-in-out infinite reverse;
}

/* ========================================== */
/* SECTION HEADER                            */
/* ========================================== */

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.section-header h2 .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff0000;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================== */
/* SERVICES GRID - 3 COLUMNS                 */
/* ========================================== */

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

/* ========================================== */
/* SERVICE CARD - COMPACT (NO EXTRA SPACES)  */
/* ========================================== */

.service-card-large {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 2rem 1.8rem;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Top Border Glow */
.service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-large:hover::before {
    transform: scaleX(1);
}

.service-card-large:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.15);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.05);
}

/* ===== ICON ===== */
.service-icon-wrapper {
    margin-bottom: 1rem;
}

.service-icon-wrapper i {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ff0000;
    transition: all 0.4s ease;
}

.service-card-large:hover .service-icon-wrapper i {
    background: rgba(255, 0, 0, 0.1);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.15);
}

/* ===== TITLE ===== */
.service-card-large h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* ===== DESCRIPTION ===== */
.service-card-large p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* ===== FEATURES - COMPACT ===== */
.service-features {
    list-style: none;
    margin-bottom: 1rem;
    padding: 0;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: #ff0000;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ===== LEARN MORE BUTTON ===== */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding-top: 0.2rem;
}

.service-cta:hover {
    gap: 15px;
    color: #cc0000;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

@media screen and (max-width: 1024px) {
    .services-main { padding: 80px 0; }
    .section-header h2 { font-size: 2.6rem; }
    .services-grid-main { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .service-card-large { padding: 1.8rem 1.5rem; }
}

@media screen and (max-width: 768px) {
    .services-main { padding: 60px 0; }
    .section-header h2 { font-size: 2.2rem; }
    .services-grid-main { grid-template-columns: 1fr; gap: 1.2rem; max-width: 450px; margin: 0 auto; }
    .service-card-large { padding: 1.5rem 1.2rem; border-radius: 14px; }
    .service-icon-wrapper i { width: 50px; height: 50px; font-size: 1.3rem; }
    .service-card-large h3 { font-size: 1.1rem; }
    .service-features li { font-size: 0.75rem; padding: 2px 0; }
}

@media screen and (max-width: 480px) {
    .services-main { padding: 50px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .services-grid-main { max-width: 100%; }
    .service-card-large { padding: 1.2rem 1rem; border-radius: 12px; }
    .service-icon-wrapper i { width: 42px; height: 42px; font-size: 1.1rem; }
    .service-card-large h3 { font-size: 1rem; }
    .service-card-large p { font-size: 0.8rem; }
    .service-features li { font-size: 0.7rem; padding: 2px 0; }
    .service-cta { font-size: 0.8rem; }
}

@media screen and (max-width: 380px) {
    .services-main { padding: 40px 0; }
    .section-header h2 { font-size: 1.5rem; }
    .service-card-large { padding: 1rem 0.8rem; }
    .service-icon-wrapper i { width: 36px; height: 36px; font-size: 0.9rem; }
    .service-card-large h3 { font-size: 0.9rem; }
    .service-features li { font-size: 0.65rem; }
}

/* ========================================== */
/* 5. WHY CHOOSE US                          */
/* ========================================== */

.why-choose-us {
    padding: 80px 0;
    background: rgba(255, 0, 0, 0.02);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.05);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff0000;
    margin: 0 auto 1rem;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.why-item h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ========================================== */
/* 6. PRICING SECTION                        */
/* ========================================== */

.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.2);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.05);
}

.pricing-card.popular {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    margin: 1rem 0;
}

.currency {
    font-size: 1.5rem;
    color: #ff0000;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #ff0000;
}

.pricing-features li i.fa-times {
    color: rgba(255, 255, 255, 0.2);
}

.pricing-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ff0000;
}

.pricing-btn.primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: transparent;
}

.pricing-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* ========================================== */
/* 7. FAQ SECTION                            */
/* ========================================== */

.faq-section {
    padding: 80px 0;
    background: rgba(255, 0, 0, 0.02);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 0, 0, 0.02);
}

.faq-question h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-toggle {
    color: #ff0000;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ========================================== */
/* 8. CTA SECTION                            */
/* ========================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(10, 10, 10, 0.95));
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================== */
/* 9. RESPONSIVE                            */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .services-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .service-card-large {
        padding: 2rem 1.8rem;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .hero-stat h3 {
        font-size: 2rem;
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .services-hero {
        padding: 120px 0 60px;
    }

    .services-grid-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 450px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .services-main {
        padding: 60px 0;
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .faq-section {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .service-card-large {
        padding: 1.8rem 1.5rem;
    }

    .service-card-large h3 {
        font-size: 1.3rem;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat h3 {
        font-size: 1.8rem;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .services-hero {
        padding: 100px 0 40px;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header h2::after {
        width: 40px;
        height: 3px;
    }

    .service-card-large {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }

    .service-card-large h3 {
        font-size: 1.1rem;
    }

    .service-card-large p {
        font-size: 0.85rem;
    }

    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 12px;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 4px 0;
    }

    .service-cta {
        font-size: 0.85rem;
    }

    .why-item {
        padding: 1.5rem;
    }

    .why-item h3 {
        font-size: 1.1rem;
    }

    .why-item p {
        font-size: 0.85rem;
    }

    .pricing-card {
        padding: 1.5rem 1.2rem;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .pricing-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .faq-question {
        padding: 1rem 1.2rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* === EXTRA SMALL MOBILE (below 380px) === */
@media screen and (max-width: 380px) {
    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-card-large {
        padding: 1.2rem 1rem;
    }

    .service-card-large h3 {
        font-size: 1rem;
    }

    .service-icon-wrapper {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .service-features li {
        font-size: 0.8rem;
    }

    .pricing-card {
        padding: 1.2rem 1rem;
    }

    .amount {
        font-size: 1.8rem;
    }

    .currency {
        font-size: 1.2rem;
    }

    .hero-stat h3 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }
}

/* ========================================== */
/* 10. ANIMATIONS                            */
/* ========================================== */

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-hero {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card-large {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card-large:nth-child(1) { animation-delay: 0.1s; }
.service-card-large:nth-child(2) { animation-delay: 0.2s; }
.service-card-large:nth-child(3) { animation-delay: 0.3s; }
.service-card-large:nth-child(4) { animation-delay: 0.4s; }
.service-card-large:nth-child(5) { animation-delay: 0.5s; }
.service-card-large:nth-child(6) { animation-delay: 0.6s; }

.why-item {
    animation: fadeInUp 0.8s ease forwards;
}

.why-item:nth-child(1) { animation-delay: 0.1s; }
.why-item:nth-child(2) { animation-delay: 0.2s; }
.why-item:nth-child(3) { animation-delay: 0.3s; }
.why-item:nth-child(4) { animation-delay: 0.4s; }
.why-item:nth-child(5) { animation-delay: 0.5s; }
.why-item:nth-child(6) { animation-delay: 0.6s; }

.pricing-card {
    animation: fadeInUp 0.8s ease forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }























/* ========================================== */
/* ABOUT US PAGE - UNIQUE DESIGN              */
/* ========================================== */

/* ===== ABOUT HERO ===== */
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero h1 .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.about-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-hero-stat {
    display: flex;
    flex-direction: column;
}

.about-hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
}

.about-hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== ABOUT STORY ===== */
.about-story {
    padding: 100px 0;
    background: #0a0a0a;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.about-story-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.about-story-text h2 .highlight {
    color: #ff0000;
}

.story-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-details {
    margin-bottom: 2rem;
}

.story-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-details strong {
    color: #ffffff;
}

.story-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mission-box,
.vision-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    border-color: rgba(255, 0, 0, 0.2);
    transform: translateY(-3px);
}

.mission-icon,
.vision-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff0000;
    margin-bottom: 0.8rem;
}

.mission-box h4,
.vision-box h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.mission-box p,
.vision-box p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #ff0000;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
    background: #cc0000;
}

/* ===== ABOUT STORY IMAGE ===== */
.about-story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.story-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(10, 10, 10, 0.5));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #ff0000;
    gap: 1rem;
}

.story-image-placeholder span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.floating-badge-about {
    position: absolute;
    bottom: 20px;
    right: -15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge-about i {
    font-size: 1.6rem;
    color: #ff0000;
}

.floating-badge-about strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
}

.floating-badge-about span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* ========================================== */
/* CORE VALUES - WHITE ICONS                 */
/* ========================================== */

.core-values {
    padding: 100px 0;
    background: rgba(255, 0, 0, 0.02);
}

.core-header {
    text-align: center;
    margin-bottom: 4rem;
}

.core-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.core-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.core-header h2 .highlight {
    color: #ff0000;
}

.core-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.core-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.core-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.15);
    background: rgba(255, 0, 0, 0.02);
}

/* ===== CORE ICON - WHITE COLOR ===== */
.core-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;  /* ← White color */
    margin: 0 auto 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Hover Effect - Red Background with White Icon */
.core-item:hover .core-icon {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;  /* ← Turns red on hover */
    transform: scale(1.05);
}

.core-item h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.core-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================== */
/* ABOUT CTA                                 */
/* ========================================== */

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(10, 10, 10, 0.95));
}

.about-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.about-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.btn-cta-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #ff0000;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
}

.btn-cta-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
    background: #cc0000;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

@media screen and (max-width: 1024px) {
    .about-hero h1 {
        font-size: 2.8rem;
    }
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .core-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-about-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
    .about-hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    .about-hero-stat .stat-number {
        font-size: 2rem;
    }
    .about-story {
        padding: 60px 0;
    }
    .about-story-text h2 {
        font-size: 2.2rem;
    }
    .story-mission-vision {
        grid-template-columns: 1fr;
    }
    .core-values {
        padding: 60px 0;
    }
    .core-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .core-header h2 {
        font-size: 2.2rem;
    }
    .team-section-about {
        padding: 60px 0;
    }
    .team-grid-about {
        grid-template-columns: 1fr 1fr;
    }
    .team-header h2 {
        font-size: 2.2rem;
    }
    .testimonials-about {
        padding: 60px 0;
    }
    .testimonial-about-content h2 {
        font-size: 2rem;
    }
    .about-cta-content h2 {
        font-size: 2rem;
    }
    .story-image-placeholder {
        height: 300px;
    }
    .floating-badge-about {
        bottom: 10px;
        right: 5px;
        padding: 12px 16px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    .about-hero p {
        font-size: 1rem;
    }
    .about-hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    .team-grid-about {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    .core-grid {
        max-width: 100%;
    }
    .story-image-placeholder {
        height: 250px;
        font-size: 3.5rem;
    }
    .floating-badge-about {
        display: none;
    }
    .about-cta-content h2 {
        font-size: 1.6rem;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatRed {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}


/* ========================================== */
/* ABOUT STORY IMAGE - UPDATED               */
/* ========================================== */

.about-story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* ===== IMAGE STYLES ===== */
.story-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
}

.story-image:hover {
    transform: scale(1.02);
}

/* ===== IMAGE WITH OVERLAY ===== */
.story-image-overlay-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.story-image-overlay-wrapper .story-image {
    height: 450px;
    display: block;
}

.story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.story-image-overlay-wrapper:hover .story-image-overlay {
    opacity: 1;
}

.story-image-overlay i {
    font-size: 4rem;
    color: #ff0000;
    animation: playPulse 2s ease-in-out infinite;
}

.story-image-overlay span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 60px rgba(255, 0, 0, 0.6);
    }
}

/* ===== FLOATING BADGE ===== */
.floating-badge-about {
    position: absolute;
    bottom: 20px;
    right: -15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge-about i {
    font-size: 1.6rem;
    color: #ff0000;
}

.floating-badge-about strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
}

.floating-badge-about span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========================================== */
/* RESPONSIVE IMAGE                          */
/* ========================================== */

@media screen and (max-width: 1024px) {
    .story-image {
        height: 380px;
    }
    .story-image-overlay-wrapper .story-image {
        height: 380px;
    }
}

@media screen and (max-width: 768px) {
    .story-image {
        height: 300px;
    }
    .story-image-overlay-wrapper .story-image {
        height: 300px;
    }
    .floating-badge-about {
        bottom: 10px;
        right: 5px;
        padding: 12px 16px;
    }
    .floating-badge-about i {
        font-size: 1.2rem;
    }
    .floating-badge-about strong {
        font-size: 0.85rem;
    }
    .floating-badge-about span {
        font-size: 0.65rem;
    }
}

@media screen and (max-width: 480px) {
    .story-image {
        height: 220px;
    }
    .story-image-overlay-wrapper .story-image {
        height: 220px;
    }
    .story-image-overlay i {
        font-size: 2.5rem;
    }
    .floating-badge-about {
        display: none;
    }
}






/* ========================================== */
/* PORTFOLIO PAGE - WHITE ICONS              */
/* ========================================== */

/* ========================================== */
/* PORTFOLIO HERO                            */
/* ========================================== */

.portfolio-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.portfolio-hero-content {
    position: relative;
    z-index: 1;
}

.portfolio-hero-badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.portfolio-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.portfolio-hero h1 .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.portfolio-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================== */
/* PORTFOLIO SECTION                         */
/* ========================================== */

.portfolio-section {
    padding: 60px 0 80px;
    background: #0a0a0a;
}

/* ========================================== */
/* FILTER BUTTONS                            */
/* ========================================== */

.portfolio-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(255, 0, 0, 0.05);
    color: #fff;
    border-color: rgba(255, 0, 0, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

/* ========================================== */
/* PORTFOLIO GRID - 3 COLUMNS               */
/* ========================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ========================================== */
/* PORTFOLIO CARD                            */
/* ========================================== */

.portfolio-item {
    display: block;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.15);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.05);
}

/* ===== IMAGE - WHITE ICON ===== */
.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(10, 10, 10, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #ffffff;  /* ← White color */
    position: relative;
    overflow: hidden;
}

.portfolio-image i {
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image i {
    transform: scale(1.1);
}

/* ===== OVERLAY ===== */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay a {
    padding: 12px 30px;
    background: #ff0000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.portfolio-overlay a i {
    color: #ffffff;  /* ← White icon in overlay */
}

.portfolio-overlay a:hover {
    background: #cc0000;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

/* ===== INFO ===== */
.portfolio-info {
    padding: 1.5rem;
}

.portfolio-category {
    display: inline-block;
    padding: 3px 14px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.portfolio-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* ===== TAGS ===== */
.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.portfolio-tags span {
    padding: 3px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-size: 0.7rem;
}

/* ===== BUTTON ===== */
.btn-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-small i {
    color: #ff0000;  /* ← Red arrow icon */
}

.btn-small:hover {
    gap: 12px;
    color: #cc0000;
}

.btn-small:hover i {
    color: #cc0000;
}

/* ========================================== */
/* NO PROJECTS MESSAGE                       */
/* ========================================== */

.no-projects {
    text-align: center;
    padding: 60px 0;
    display: none;
}

.no-projects i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.no-projects h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.no-projects p {
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================== */
/* PORTFOLIO CTA                             */
/* ========================================== */

.portfolio-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(10, 10, 10, 0.95));
}

.portfolio-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.portfolio-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.btn-cta-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #ff0000;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
}

.btn-cta-portfolio i {
    color: #ffffff;  /* ← White icon */
}

.btn-cta-portfolio:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
    background: #cc0000;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

@media screen and (max-width: 1024px) {
    .portfolio-hero h1 {
        font-size: 2.8rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .portfolio-filters {
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .portfolio-hero {
        padding: 120px 0 60px;
    }

    .portfolio-hero h1 {
        font-size: 2.2rem;
    }

    .portfolio-hero p {
        font-size: 1rem;
    }

    .portfolio-section {
        padding: 40px 0 60px;
    }

    .portfolio-filters {
        gap: 0.6rem;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 450px;
        margin: 0 auto;
    }

    .portfolio-image {
        height: 180px;
        font-size: 3rem;
    }

    .portfolio-info h3 {
        font-size: 1.1rem;
    }

    .portfolio-cta-content h2 {
        font-size: 2rem;
    }

    .btn-cta-portfolio {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .portfolio-hero h1 {
        font-size: 1.8rem;
    }

    .portfolio-hero-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .portfolio-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .portfolio-image {
        height: 160px;
        font-size: 2.5rem;
    }

    .portfolio-info {
        padding: 1.2rem;
    }

    .portfolio-cta-content h2 {
        font-size: 1.6rem;
    }

    .portfolio-cta-content p {
        font-size: 0.95rem;
    }

    .btn-cta-portfolio {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-hero {
    animation: fadeInUp 0.8s ease forwards;
}

.portfolio-item {
    animation: fadeInUp 0.8s ease forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.05s; }
.portfolio-item:nth-child(2) { animation-delay: 0.1s; }
.portfolio-item:nth-child(3) { animation-delay: 0.15s; }
.portfolio-item:nth-child(4) { animation-delay: 0.2s; }
.portfolio-item:nth-child(5) { animation-delay: 0.25s; }
.portfolio-item:nth-child(6) { animation-delay: 0.3s; }
.portfolio-item:nth-child(7) { animation-delay: 0.35s; }
.portfolio-item:nth-child(8) { animation-delay: 0.4s; }
.portfolio-item:nth-child(9) { animation-delay: 0.45s; }
.portfolio-item:nth-child(10) { animation-delay: 0.5s; }
.portfolio-item:nth-child(11) { animation-delay: 0.55s; }
.portfolio-item:nth-child(12) { animation-delay: 0.6s; }






/* ========================================== */
/* PORTFOLIO STATISTICS SECTION              */
/* ========================================== */

.portfolio-stats-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.portfolio-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.portfolio-stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 20s ease-in-out infinite reverse;
}

.stats-wrapper {
    position: relative;
    z-index: 1;
}

/* ========================================== */
/* SECTION HEADER                            */
/* ========================================== */

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.stats-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stats-header h2 .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.stats-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================== */
/* STATS GRID                                */
/* ========================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

/* ========================================== */
/* STAT CARD                                 */
/* ========================================== */

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Card Hover Effect */
.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.15);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.05);
}

/* Red Glow Line at Top */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

/* ===== ICON ===== */
.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ff0000;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 0, 0, 0.1);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
}

/* ========================================== */
/* STAT NUMBER - WITH PLUS & PERCENTAGE      */
/* ========================================== */

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* Number */
.stat-number .num {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
}

/* Suffix - Plus (+) or Percentage (%) */
.stat-number .suffix {
    color: #ff0000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-left: 2px;
    display: inline-block;
}

/* ===== LABEL ===== */
.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ========================================== */
/* ALTERNATIVE: DIFFERENT STYLES FOR SUFFIX  */
/* ========================================== */

/* Style 1: Red Suffix (Default) */
.suffix-red .suffix {
    color: #ff0000;
}

/* Style 2: White Suffix */
.suffix-white .suffix {
    color: #ffffff;
}

/* Style 3: Glowing Suffix */
.suffix-glow .suffix {
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Style 4: Large Suffix */
.suffix-large .suffix {
    font-size: 3rem;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .portfolio-stats-section {
        padding: 80px 0;
    }

    .stats-header h2 {
        font-size: 2.6rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-number .num {
        font-size: 2.5rem;
    }

    .stat-number .suffix {
        font-size: 2rem;
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .portfolio-stats-section {
        padding: 60px 0;
    }

    .stats-header {
        margin-bottom: 2.5rem;
    }

    .stats-header h2 {
        font-size: 2.2rem;
    }

    .stats-header p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-number .num {
        font-size: 2rem;
    }

    .stat-number .suffix {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .portfolio-stats-section {
        padding: 50px 0;
    }

    .stats-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .stats-header h2 {
        font-size: 1.8rem;
    }

    .stats-header p {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .stat-card {
        padding: 1.2rem 0.8rem;
        border-radius: 10px;
    }

    .stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-number .num {
        font-size: 1.6rem;
    }

    .stat-number .suffix {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

/* === EXTRA SMALL MOBILE (below 380px) === */
@media screen and (max-width: 380px) {
    .portfolio-stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 280px;
        margin: 0 auto;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-number .num {
        font-size: 1.8rem;
    }

    .stat-number .suffix {
        font-size: 1.5rem;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseRed {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 0, 0, 0.5);
    }
}

.stats-header {
    animation: fadeInUp 0.8s ease forwards;
}

.stat-card {
    animation: fadeInUp 0.8s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }

/* Pulse animation for suffix on hover */
.stat-card:hover .suffix {
    animation: pulseRed 1s ease-in-out infinite;
}




/* ========================================== */
/* PORTFOLIO STATISTICS SECTION - FIXED      */
/* ========================================== */

.portfolio-stats-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.portfolio-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.portfolio-stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 20s ease-in-out infinite reverse;
}

.stats-wrapper {
    position: relative;
    z-index: 1;
}

/* ========================================== */
/* SECTION HEADER                            */
/* ========================================== */

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.stats-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stats-header h2 .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.stats-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================== */
/* STATS GRID - 5 COLUMNS                    */
/* ========================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

/* ========================================== */
/* STAT CARD                                 */
/* ========================================== */

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Card Hover Effect */
.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.15);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.05);
}

/* Red Glow Line at Top */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

/* ===== ICON ===== */
.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ff0000;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 0, 0, 0.1);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
}

/* ========================================== */
/* STAT NUMBER - WITH PLUS & PERCENTAGE      */
/* ========================================== */

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* Number */
.stat-number .num {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
}

/* Suffix - Plus (+) or Percentage (%) */
.stat-number .suffix {
    color: #ff0000;
    font-size: 2.8rem;
    font-weight: 700;
    margin-left: 2px;
    display: inline-block;
}

/* ===== LABEL ===== */
.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 0.3rem;
}

/* ========================================== */
/* RESPONSIVE - FIXED                        */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .portfolio-stats-section {
        padding: 80px 0;
    }

    .stats-header h2 {
        font-size: 2.6rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-number .num {
        font-size: 2.5rem;
    }

    .stat-number .suffix {
        font-size: 2.2rem;
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .portfolio-stats-section {
        padding: 60px 0;
    }

    .stats-header {
        margin-bottom: 2.5rem;
    }

    .stats-header h2 {
        font-size: 2.2rem;
    }

    .stats-header p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-number .num {
        font-size: 2rem;
    }

    .stat-number .suffix {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .portfolio-stats-section {
        padding: 50px 0;
    }

    .stats-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .stats-header h2 {
        font-size: 1.8rem;
    }

    .stats-header p {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .stat-card {
        padding: 1.2rem 0.8rem;
        border-radius: 10px;
    }

    .stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-number .num {
        font-size: 1.6rem;
    }

    .stat-number .suffix {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

/* === EXTRA SMALL MOBILE (below 380px) === */
@media screen and (max-width: 380px) {
    .portfolio-stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .stat-card {
        padding: 1rem 0.6rem;
        border-radius: 8px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-number .num {
        font-size: 1.3rem;
    }

    .stat-number .suffix {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseSuffix {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 0, 0, 0.5);
        transform: scale(1.05);
    }
}

.stats-header {
    animation: fadeInUp 0.8s ease forwards;
}

.stat-card {
    animation: fadeInUp 0.8s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }

/* Pulse animation for suffix on hover */
.stat-card:hover .suffix {
    animation: pulseSuffix 1s ease-in-out infinite;
}












/* ========================================== */
/* FREQUENTLY ASKED QUESTIONS SECTION         */
/* ========================================== */

.faq-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 20s ease-in-out infinite reverse;
}

/* ========================================== */
/* SECTION HEADER                            */
/* ========================================== */

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.faq-badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.faq-header h2 .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.faq-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================== */
/* FAQ GRID                                  */
/* ========================================== */

.faq-grid {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* ========================================== */
/* FAQ ITEM                                  */
/* ========================================== */

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 0, 0, 0.1);
}

.faq-item.active {
    border-color: rgba(255, 0, 0, 0.2);
    background: rgba(255, 0, 0, 0.02);
}

/* ========================================== */
/* FAQ QUESTION                              */
/* ========================================== */

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 0, 0, 0.02);
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #ff0000;
}

/* ===== TOGGLE ICON ===== */
.faq-toggle {
    color: #ff0000;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* ========================================== */
/* FAQ ANSWER                                */
/* ========================================== */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================== */
/* FAQ CTA - Still Have Questions?           */
/* ========================================== */

.faq-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.faq-cta-content h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.faq-cta-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.btn-faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    background: #ff0000;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.btn-faq-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.35);
    background: #cc0000;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-header h2 {
        font-size: 2.6rem;
    }

    .faq-grid {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 2.5rem;
    }

    .faq-header h2 {
        font-size: 2.2rem;
    }

    .faq-header p {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.2rem 1.2rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-cta {
        padding: 1.8rem 1.2rem;
        margin-top: 2rem;
    }

    .faq-cta-content h4 {
        font-size: 1.2rem;
    }

    .btn-faq-cta {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-header p {
        font-size: 0.9rem;
    }

    .faq-grid {
        padding: 0 10px;
        gap: 0.8rem;
    }

    .faq-question {
        padding: 1rem 1rem;
    }

    .faq-question h3 {
        font-size: 0.85rem;
    }

    .faq-toggle {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .faq-cta {
        padding: 1.2rem 1rem;
        margin-top: 1.5rem;
        border-radius: 12px;
    }

    .faq-cta-content h4 {
        font-size: 1rem;
    }

    .faq-cta-content p {
        font-size: 0.85rem;
    }

    .btn-faq-cta {
        padding: 8px 20px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
}

/* === EXTRA SMALL MOBILE (below 380px) === */
@media screen and (max-width: 380px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-header h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 0.8rem 0.8rem;
    }

    .faq-question h3 {
        font-size: 0.8rem;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-header {
    animation: fadeInUp 0.8s ease forwards;
}

.faq-item {
    animation: fadeInUp 0.8s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.3s; }

.faq-cta {
    animation: fadeInUp 0.8s ease forwards 0.35s;
}







/* ========================================== */
/* BLOG PAGE - WITH IMAGES                   */
/* ========================================== */

/* ========================================== */
/* BLOG HERO                                 */
/* ========================================== */

.blog-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-hero-badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.blog-hero h1 .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.blog-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================== */
/* BLOG PAGE SECTION                         */
/* ========================================== */

.blog-page {
    padding: 60px 0 80px;
    background: #0a0a0a;
}

/* ========================================== */
/* BLOG GRID - 3 COLUMNS                    */
/* ========================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ========================================== */
/* BLOG POST CARD - WITH IMAGE              */
/* ========================================== */

.blog-post {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.15);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.05);
}

/* ===== IMAGE ===== */
.blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.08);
}

/* Image Overlay - Dark Gradient */
.blog-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

/* ===== CATEGORY BADGE ===== */
.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 16px;
    background: rgba(255, 0, 0, 0.9);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* ===== CONTENT ===== */
.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.8rem;
}

.blog-meta i {
    margin-right: 4px;
}

.blog-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-post:hover .blog-content h3 {
    color: #ff0000;
}

.blog-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

/* ===== READ MORE BUTTON ===== */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    gap: 14px;
    color: #cc0000;
}

/* ========================================== */
/* LOAD MORE BUTTON                          */
/* ========================================== */

.load-more {
    text-align: center;
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-red {
    background: #ff0000;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
    background: #cc0000;
}

/* ========================================== */
/* NEWSLETTER SECTION                        */
/* ========================================== */

.newsletter-section {
    padding: 80px 0;
    background: rgba(255, 0, 0, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.newsletter-content h2 .highlight {
    color: #ff0000;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.02);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-content small {
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .blog-hero h1 {
        font-size: 2.8rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .blog-image {
        height: 180px;
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 60px;
    }

    .blog-hero h1 {
        font-size: 2.2rem;
    }

    .blog-hero p {
        font-size: 1rem;
    }

    .blog-page {
        padding: 40px 0 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 450px;
        margin: 0 auto;
    }

    .blog-image {
        height: 190px;
    }

    .blog-content h3 {
        font-size: 1.05rem;
    }

    .blog-content p {
        font-size: 0.85rem;
    }

    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-content h2 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 400px;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .blog-hero h1 {
        font-size: 1.8rem;
    }

    .blog-hero-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .blog-grid {
        max-width: 100%;
        gap: 1.2rem;
    }

    .blog-image {
        height: 160px;
    }

    .blog-category {
        font-size: 0.6rem;
        padding: 3px 12px;
        top: 10px;
        left: 10px;
    }

    .blog-content {
        padding: 1.2rem;
    }

    .blog-meta {
        font-size: 0.7rem;
        gap: 0.8rem;
    }

    .blog-content h3 {
        font-size: 0.95rem;
    }

    .blog-content p {
        font-size: 0.8rem;
    }

    .read-more {
        font-size: 0.8rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .newsletter-content h2 {
        font-size: 1.5rem;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-hero {
    animation: fadeInUp 0.8s ease forwards;
}

.blog-post {
    animation: fadeInUp 0.8s ease forwards;
}

.blog-post:nth-child(1) { animation-delay: 0.05s; }
.blog-post:nth-child(2) { animation-delay: 0.1s; }
.blog-post:nth-child(3) { animation-delay: 0.15s; }
.blog-post:nth-child(4) { animation-delay: 0.2s; }
.blog-post:nth-child(5) { animation-delay: 0.25s; }
.blog-post:nth-child(6) { animation-delay: 0.3s; }



/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.contact-page {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-wrapper h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.02);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.05);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-red {
    width: 100%;
    justify-content: center;
}

.form-message {
    margin-top: 1rem;
    padding: 10px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 255, 0, 0.05);
    color: #4caf50;
    border: 1px solid rgba(0, 255, 0, 0.1);
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.05);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

/* Contact Info */
.contact-info-wrapper {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-wrapper h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff0000;
    margin-top: 5px;
    width: 30px;
}

.contact-item h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.map-placeholder {
    margin-top: 2rem;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

.map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ff0000;
}

/* ==========================================
   PAGE HERO (Common for all pages)
   ========================================== */

.page-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(10, 10, 10, 0.95));
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-hero h1 .highlight {
    color: #ff0000;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* ==========================================
   RESPONSIVE FOR ALL PAGES
   ========================================== */

@media screen and (max-width: 1024px) {
    .services-grid-main {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .hero-stats {
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .services-grid-main {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-stat h3 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card-large {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}




/* ==========================================
   BLOG POST DETAIL PAGE - CSS
   ========================================== */

/* ========================================== */
/* RESET & BASE                              */
/* ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    padding-top: 85px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ========================================== */
/* HEADER                                    */
/* ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 0, 0, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header.scrolled {
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-bottom: 1px solid rgba(255, 0, 0, 0.25);
    box-shadow: 0 8px 40px rgba(255, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo a:hover .logo-image {
    transform: scale(1.08);
    filter: brightness(1.2);
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo a:hover .logo-text {
    color: #ff0000;
}

/* ===== NAVIGATION ===== */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ff0000;
    font-weight: 600;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    color: #ff0000;
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ========================================== */
/* BLOG POST DETAIL PAGE - WITH IMAGES       */
/* ========================================== */

/* ========================================== */
/* BLOG POST DETAIL SECTION                  */
/* ========================================== */

.blog-post-detail {
    padding: 80px 0 60px;
    background: #0a0a0a;
    min-height: 100vh;
}

/* ========================================== */
/* BACK TO BLOG                              */
/* ========================================== */

.back-to-blog {
    margin-bottom: 2.5rem;
}

.back-to-blog a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-blog a:hover {
    color: #ff0000;
    gap: 12px;
}

/* ========================================== */
/* POST CONTENT                              */
/* ========================================== */

.post-content {
    max-width: 850px;
    margin: 0 auto;
}

/* ========================================== */
/* POST HEADER                               */
/* ========================================== */

.post-header {
    margin-bottom: 2rem;
}

.post-category {
    display: inline-block;
    padding: 5px 18px;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.post-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.post-meta i {
    margin-right: 6px;
}

/* ========================================== */
/* FEATURED IMAGE                            */
/* ========================================== */

.post-featured-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-featured-image:hover img {
    transform: scale(1.02);
}

/* ========================================== */
/* POST BODY                                 */
/* ========================================== */

.post-body {
    line-height: 1.8;
}

.post-body p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.post-body h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.post-body h3 {
    color: #ff0000;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 0.8rem;
}

/* ========================================== */
/* TREND IMAGES - Inline Images              */
/* ========================================== */

.post-trend-image {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem 0 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.post-trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-trend-image:hover img {
    transform: scale(1.03);
}

/* ========================================== */
/* CONCLUSION                                */
/* ========================================== */

.post-conclusion {
    background: rgba(255, 0, 0, 0.03);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #ff0000;
    margin: 2rem 0;
}

.post-conclusion h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.post-conclusion p {
    margin-bottom: 0;
}

/* ========================================== */
/* POST TAGS                                 */
/* ========================================== */

.post-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.post-tags .tag {
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.post-tags .tag:hover {
    background: rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

/* ========================================== */
/* SHARE BUTTONS                             */
/* ========================================== */

.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.share-buttons span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000000; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.whatsapp { background: #25d366; }

/* ========================================== */
/* AUTHOR BIO - WITH IMAGE                   */
/* ========================================== */

.author-bio {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 2.5rem 0;
    align-items: flex-start;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.author-social {
    display: flex;
    gap: 0.8rem;
}

.author-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    transform: translateY(-2px);
}

/* ========================================== */
/* RELATED POSTS - WITH IMAGES               */
/* ========================================== */

.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.related-posts h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
}

.related-post:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 0, 0.2);
    transform: translateY(-3px);
}

.related-image {
    width: 70px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    flex: 1;
}

.related-content h4 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.related-post:hover .related-content h4 {
    color: #ff0000;
}

.related-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .blog-post-detail {
        padding: 70px 0 50px;
    }

    .post-header h1 {
        font-size: 2.4rem;
    }

    .post-featured-image {
        height: 300px;
    }

    .post-trend-image {
        height: 220px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .blog-post-detail {
        padding: 60px 0 40px;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-meta {
        gap: 1rem;
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    .post-featured-image {
        height: 220px;
        border-radius: 12px;
    }

    .post-trend-image {
        height: 180px;
    }

    .post-body p {
        font-size: 0.95rem;
    }

    .post-body h2 {
        font-size: 1.5rem;
    }

    .post-conclusion {
        padding: 1.5rem;
    }

    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .author-avatar {
        width: 80px;
        height: 80px;
    }

    .author-social {
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .back-to-blog {
        margin-bottom: 1.5rem;
    }

    .share-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .blog-post-detail {
        padding: 50px 0 30px;
    }

    .post-header h1 {
        font-size: 1.6rem;
    }

    .post-category {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .post-meta {
        gap: 0.8rem;
        font-size: 0.75rem;
        flex-direction: column;
    }

    .post-featured-image {
        height: 180px;
        border-radius: 10px;
    }

    .post-trend-image {
        height: 150px;
        border-radius: 8px;
    }

    .post-body p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .post-body h2 {
        font-size: 1.3rem;
        margin: 1.8rem 0 0.8rem;
    }

    .post-body h3 {
        font-size: 1.1rem;
    }

    .post-conclusion {
        padding: 1rem 1.2rem;
    }

    .post-conclusion h3 {
        font-size: 1.1rem;
    }

    .post-tags {
        gap: 0.5rem;
        margin: 1.5rem 0;
        padding-top: 1.5rem;
    }

    .post-tags .tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .author-bio {
        padding: 1rem;
        gap: 1rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }

    .related-posts h3 {
        font-size: 1.2rem;
    }

    .related-post {
        padding: 0.8rem;
    }

    .related-image {
        width: 60px;
        height: 50px;
    }

    .related-content h4 {
        font-size: 0.8rem;
    }

    .share-buttons span {
        font-size: 0.85rem;
    }

    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-content {
    animation: fadeInUp 0.8s ease forwards;
}

.post-featured-image {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

/* ========================================== */
/* FOOTER                                    */
/* ========================================== */

.footer {
    background: #050505;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ff0000;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

/* Tablet */
@media screen and (max-width: 1024px) {
    .post-header h1 {
        font-size: 2.4rem;
    }

    .post-featured-image {
        height: 280px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    body {
        padding-top: 75px;
    }

    .header {
        padding: 12px 0;
    }

    .hamburger {
        display: flex;
    }

    .social-icons {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        transition: left 0.4s ease;
        padding: 40px 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .logo-image {
        height: 35px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .blog-post-detail {
        padding: 40px 0;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-meta {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .post-featured-image {
        height: 200px;
        font-size: 3.5rem;
    }

    .post-body p {
        font-size: 1rem;
    }

    .post-body h2 {
        font-size: 1.5rem;
    }

    .post-conclusion {
        padding: 1.5rem;
    }

    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo-image {
        height: 28px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .post-header h1 {
        font-size: 1.6rem;
    }

    .post-featured-image {
        height: 160px;
        font-size: 2.5rem;
        border-radius: 10px;
    }

    .post-body p {
        font-size: 0.95rem;
    }

    .post-body h2 {
        font-size: 1.3rem;
    }

    .post-tags .tag {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .author-bio {
        padding: 1.5rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}
















/* ========================================== */
/* TESTIMONIALS SECTION - WHITE AVATARS      */
/* ========================================== */

.testimonials {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 20s ease-in-out infinite reverse;
}

/* ========================================== */
/* SECTION HEADER                            */
/* ========================================== */

.testimonial-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonial-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.testimonial-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.testimonial-title .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.testimonial-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================== */
/* TESTIMONIALS GRID                         */
/* ========================================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* ========================================== */
/* TESTIMONIAL CARD                          */
/* ========================================== */

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Card Hover Effect */
.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.15);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.05);
}

/* Quote Icon */
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    color: rgba(255, 0, 0, 0.05);
}

.testimonial-card:hover::before {
    color: rgba(255, 0, 0, 0.08);
}

/* ===== RATING ===== */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
}

/* ===== TEXT ===== */
.testimonial-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ========================================== */
/* AUTHOR AVATAR - WHITE COLOR               */
/* ========================================== */

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

/* Avatar Circle - White Background */
.author-avatar {
    width: 50px;
    height: 50px;
    background: #ffffff;  /* White background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff0000;  /* Red text on white background */
    border: 2px solid rgba(255, 0, 0, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Avatar Hover Effect */
.testimonial-card:hover .author-avatar {
    background: #ff0000;  /* Red background on hover */
    color: #ffffff;       /* White text on hover */
    border-color: #ff0000;
    transform: scale(1.1);
}

/* Avatar Alternative - Red Background with White Text */
.author-avatar-red {
    background: #ff0000;
    color: #ffffff;
}

.author-avatar-red:hover {
    background: #cc0000;
    transform: scale(1.1);
}

/* Avatar Alternative - Transparent with Border */
.author-avatar-transparent {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.author-avatar-transparent:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.05);
}

/* Author Info */
.author-info h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ========================================== */
/* TESTIMONIAL STATS                         */
/* ========================================== */

.testimonial-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff0000;
    line-height: 1.2;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.stat-stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-top: 4px;
}

.stat-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
}

/* ========================================== */
/* AVATAR COLOR VARIANTS - QUICK REFERENCE   */
/* ========================================== */

/* Option 1: White background with red text (Default) */
.author-avatar-white {
    background: #ffffff;
    color: #ff0000;
}

/* Option 2: Red background with white text */
.author-avatar-red {
    background: #ff0000;
    color: #ffffff;
}

/* Option 3: Dark background with white text */
.author-avatar-dark {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

/* Option 4: Gradient background with white text */
.author-avatar-gradient {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
}

/* Option 5: Transparent with border (Like your hero section) */
.author-avatar-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .testimonial-title {
        font-size: 2.6rem;
    }

    .testimonial-card {
        padding: 2rem 1.8rem;
    }

    .testimonial-stats {
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .stat-item .stat-number {
        font-size: 2.2rem;
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-header {
        margin-bottom: 3rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        max-width: 450px;
        margin: 0 auto;
    }

    .testimonial-title {
        font-size: 2.2rem;
    }

    .testimonial-subtitle {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1.8rem 1.5rem;
        border-radius: 16px;
    }

    .testimonial-card::before {
        font-size: 2.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .testimonial-stats {
        gap: 1.5rem;
        padding: 1.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        display: none;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .testimonials {
        padding: 50px 0;
    }

    .testimonial-header {
        margin-bottom: 2.5rem;
    }

    .testimonial-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .testimonial-title {
        font-size: 1.8rem;
    }

    .testimonial-subtitle {
        font-size: 0.9rem;
    }

    .testimonial-grid {
        gap: 1.5rem;
        max-width: 100%;
    }

    .testimonial-card {
        padding: 1.5rem 1.2rem;
        border-radius: 14px;
    }

    .testimonial-card::before {
        font-size: 2rem;
        top: 12px;
        right: 15px;
    }

    .testimonial-rating i {
        font-size: 0.85rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-author {
        gap: 0.8rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    .testimonial-stats {
        gap: 1rem;
        padding: 1.2rem;
        flex-direction: column;
    }

    .stat-item .stat-number {
        font-size: 1.8rem;
    }

    .stat-item .stat-label {
        font-size: 0.75rem;
    }
}

/* === EXTRA SMALL MOBILE (below 380px) === */
@media screen and (max-width: 380px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonial-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 1.2rem 1rem;
        border-radius: 12px;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .author-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .testimonial-stats {
        padding: 1rem;
    }

    .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.testimonial-header {
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-card {
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

.testimonial-stats {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}
/* ========================================== */
/* LATEST BLOG POSTS SLIDER - WITH IMAGES    */
/* ========================================== */

.latest-blog {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.latest-blog::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

/* ========================================== */
/* SECTION HEADER                            */
/* ========================================== */

.blog-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.blog-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.blog-title .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.blog-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================== */
/* BLOG SLIDER WRAPPER                       */
/* ========================================== */

.blog-slider-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 10px 0 20px;
}

.blog-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* ========================================== */
/* BLOG CARD - WITH IMAGE                    */
/* ========================================== */

.blog-slide {
    min-width: calc(33.333% - 1.33rem);
    flex: 1;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.15);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.05);
}

/* ===== CARD IMAGE - REAL IMAGES ===== */
.blog-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

/* Image Overlay - Dark Gradient */
.blog-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

/* ===== CATEGORY BADGE ===== */
.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 16px;
    background: rgba(255, 0, 0, 0.9);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* ===== CARD CONTENT ===== */
.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.8rem;
}

.blog-card-meta i {
    margin-right: 4px;
}

.blog-card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h3 {
    color: #ff0000;
}

.blog-card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-card-btn:hover {
    gap: 14px;
    color: #cc0000;
}

/* ========================================== */
/* SLIDER CONTROLS                           */
/* ========================================== */

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.slider-btn:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    transform: scale(1.05);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* ===== DOTS ===== */
.slider-dots {
    display: flex;
    gap: 0.6rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ff0000;
    width: 28px;
    border-radius: 5px;
}

.slider-dot:hover {
    background: rgba(255, 0, 0, 0.4);
}

/* ========================================== */
/* VIEW ALL BUTTON                           */
/* ========================================== */

.blog-view-all {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-red {
    background: #ff0000;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
    background: #cc0000;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .latest-blog {
        padding: 80px 0;
    }

    .blog-title {
        font-size: 2.6rem;
    }

    .blog-slide {
        min-width: calc(50% - 1rem);
    }

    .blog-card-image {
        height: 170px;
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .latest-blog {
        padding: 60px 0;
    }

    .blog-header {
        margin-bottom: 2.5rem;
    }

    .blog-title {
        font-size: 2.2rem;
    }

    .blog-subtitle {
        font-size: 1rem;
    }

    .blog-slide {
        min-width: calc(100%);
    }

    .blog-card-image {
        height: 190px;
    }

    .blog-card-content h3 {
        font-size: 1.05rem;
    }

    .blog-card-content p {
        font-size: 0.85rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .latest-blog {
        padding: 50px 0;
    }

    .blog-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .blog-title {
        font-size: 1.8rem;
    }

    .blog-subtitle {
        font-size: 0.9rem;
    }

    .blog-card-image {
        height: 160px;
    }

    .blog-card-category {
        font-size: 0.6rem;
        padding: 3px 10px;
        top: 10px;
        left: 10px;
    }

    .blog-card-content {
        padding: 1.2rem;
    }

    .blog-card-meta {
        font-size: 0.7rem;
        gap: 0.8rem;
    }

    .blog-card-content h3 {
        font-size: 0.95rem;
    }

    .blog-card-content p {
        font-size: 0.8rem;
    }

    .blog-card-btn {
        font-size: 0.8rem;
    }

    .slider-controls {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 20px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.blog-header {
    animation: fadeInUp 0.8s ease forwards;
}

.blog-slider-wrapper {
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.blog-view-all {
    animation: fadeInUp 0.8s ease forwards 0.5s;
}


/* ========================================== */
/* GET IN TOUCH SECTION - FULLY RESPONSIVE   */
/* ========================================== */

.get-in-touch {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.get-in-touch::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.get-in-touch::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 20s ease-in-out infinite reverse;
}

/* ========================================== */
/* SECTION HEADER                            */
/* ========================================== */

.touch-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.touch-badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.touch-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.touch-title .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.touch-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================== */
/* TOUCH CONTENT - 2 COLUMNS                 */
/* ========================================== */

.touch-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

/* ========================================== */
/* LEFT: FORM                                 */
/* ========================================== */

.touch-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
}

.touch-form-wrapper h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.touch-form .form-group {
    margin-bottom: 1.2rem;
}

.touch-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
}

.touch-form label i {
    color: #ff0000;
    font-size: 0.8rem;
}

.touch-form input,
.touch-form select,
.touch-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    appearance: none;
}

.touch-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.touch-form select option {
    background: #1a1a1a;
    color: #ffffff;
}

.touch-form input::placeholder,
.touch-form textarea::placeholder,
.touch-form select::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.touch-form input:focus,
.touch-form select:focus,
.touch-form textarea:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.02);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.05);
}

.touch-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== SUBMIT BUTTON ===== */
.touch-submit {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
}

.touch-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.3);
    background: linear-gradient(135deg, #cc0000, #990000);
}

.touch-submit:active {
    transform: scale(0.98);
}

/* ===== FORM MESSAGE ===== */
.touch-form-message {
    margin-top: 1rem;
    padding: 12px 16px;
    border-radius: 10px;
    display: none;
    font-weight: 500;
}

.touch-form-message.success {
    display: block;
    background: rgba(0, 255, 0, 0.05);
    color: #4caf50;
    border: 1px solid rgba(0, 255, 0, 0.1);
}

.touch-form-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.05);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

/* ========================================== */
/* RIGHT: CONTACT INFO                       */
/* ========================================== */

.touch-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.touch-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.touch-info-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.touch-info-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===== INFO ITEMS ===== */
.touch-info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.touch-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.touch-info-item:hover {
    background: rgba(255, 0, 0, 0.03);
    transform: translateX(5px);
}

.touch-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 0, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ff0000;
    transition: all 0.3s ease;
}

.touch-info-item:hover .touch-info-icon {
    background: rgba(255, 0, 0, 0.15);
    transform: scale(1.05);
}

.touch-info-text h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.touch-info-text p {
    font-size: 0.95rem;
    color: #ffffff;
}

.touch-info-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.touch-info-text a:hover {
    color: #ff0000;
}

/* ===== SOCIAL LINKS ===== */
.touch-social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.touch-social h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.touch-social-links {
    display: flex;
    gap: 0.8rem;
}

.touch-social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.touch-social-link:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    transform: translateY(-3px) scale(1.05);
}

/* ===== MAP ===== */
.touch-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================== */
/* RESPONSIVE - MOBILE & TABLET              */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .get-in-touch {
        padding: 80px 0;
    }

    .touch-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .touch-title {
        font-size: 2.6rem;
    }

    .touch-form-wrapper,
    .touch-info-card {
        padding: 2rem;
    }

    .touch-form-wrapper h3,
    .touch-info-card h3 {
        font-size: 1.4rem;
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .get-in-touch {
        padding: 60px 0;
    }

    .touch-header {
        margin-bottom: 2.5rem;
    }

    .touch-title {
        font-size: 2.2rem;
    }

    .touch-subtitle {
        font-size: 1rem;
    }

    .touch-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 550px;
        margin: 0 auto;
    }

    .touch-form-wrapper,
    .touch-info-card {
        padding: 1.8rem;
        border-radius: 16px;
    }

    .touch-form-wrapper h3,
    .touch-info-card h3 {
        font-size: 1.3rem;
    }

    .touch-info-desc {
        font-size: 0.9rem;
    }

    .touch-form label {
        font-size: 0.8rem;
    }

    .touch-form input,
    .touch-form select,
    .touch-form textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .touch-info-item {
        padding: 0.6rem 0.8rem;
    }

    .touch-info-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .touch-info-text p {
        font-size: 0.9rem;
    }

    .touch-submit {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .touch-social-link {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .touch-map iframe {
        height: 160px;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .get-in-touch {
        padding: 50px 0;
    }

    .touch-header {
        margin-bottom: 2rem;
    }

    .touch-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
        letter-spacing: 1px;
    }

    .touch-title {
        font-size: 1.8rem;
    }

    .touch-subtitle {
        font-size: 0.9rem;
    }

    .touch-content {
        gap: 1.5rem;
        max-width: 100%;
    }

    .touch-form-wrapper,
    .touch-info-card {
        padding: 1.2rem;
        border-radius: 14px;
    }

    .touch-form-wrapper h3,
    .touch-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .touch-info-desc {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .touch-form .form-group {
        margin-bottom: 0.8rem;
    }

    .touch-form label {
        font-size: 0.75rem;
        gap: 6px;
    }

    .touch-form label i {
        font-size: 0.7rem;
    }

    .touch-form input,
    .touch-form select,
    .touch-form textarea {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .touch-form textarea {
        min-height: 100px;
    }

    .touch-info-items {
        gap: 0.6rem;
    }

    .touch-info-item {
        padding: 0.5rem 0.6rem;
        gap: 0.7rem;
        border-radius: 8px;
    }

    .touch-info-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .touch-info-text h4 {
        font-size: 0.7rem;
    }

    .touch-info-text p {
        font-size: 0.85rem;
    }

    .touch-submit {
        padding: 10px 20px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .touch-social {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .touch-social h4 {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .touch-social-links {
        gap: 0.6rem;
    }

    .touch-social-link {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .touch-map iframe {
        height: 140px;
        border-radius: 8px;
    }

    .touch-form-message {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
}

/* === EXTRA SMALL MOBILE (below 380px) === */
@media screen and (max-width: 380px) {
    .get-in-touch {
        padding: 40px 0;
    }

    .touch-title {
        font-size: 1.5rem;
    }

    .touch-form-wrapper,
    .touch-info-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .touch-form-wrapper h3,
    .touch-info-card h3 {
        font-size: 1rem;
    }

    .touch-form input,
    .touch-form select,
    .touch-form textarea {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .touch-info-item {
        padding: 0.4rem 0.5rem;
    }

    .touch-info-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.7rem;
    }

    .touch-info-text p {
        font-size: 0.8rem;
    }

    .touch-submit {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .touch-social-link {
        width: 30px;
        height: 30px;
        font-size: 0.65rem;
    }

    .touch-map iframe {
        height: 120px;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.touch-header {
    animation: fadeInUp 0.8s ease forwards;
}

.touch-form-wrapper {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.touch-info-wrapper {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}








/* ========================================== */
/* FOOTER - FULL WIDTH                       */
/* ========================================== */

.footer-full {
    width: 100%;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.footer-full::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* ========================================== */
/* FOOTER TOP                                */
/* ========================================== */

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 70px 0 50px;
}

/* ========================================== */
/* COLUMN 1: LOGO & DESCRIPTION             */
/* ========================================== */

.footer-col-1 {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.footer-logo-text:hover {
    color: #ff0000;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 400px;
}

/* ===== SOCIAL LINKS ===== */
.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    transform: translateY(-3px) scale(1.05);
}

/* ========================================== */
/* COLUMN 2 & 3: NAVIGATION LINKS           */
/* ========================================== */

.footer-col-2,
.footer-col-3 {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff0000;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #ff0000;
    transform: translateX(5px);
}

/* ========================================== */
/* COLUMN 4: CONTACT INFO                    */
/* ========================================== */

.footer-col-4 {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: #ff0000;
    font-size: 1rem;
    margin-top: 3px;
    min-width: 18px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #ff0000;
}

/* ========================================== */
/* FOOTER BOTTOM                             */
/* ========================================== */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff0000;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 50px 0 40px;
    }

    .footer-col-1 {
        grid-column: 1 / -1;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-container {
        padding: 0 20px;
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 40px 0 30px;
    }

    .footer-col-1 {
        grid-column: 1;
    }

    .footer-logo-img {
        height: 38px;
    }

    .footer-logo-text {
        font-size: 1.4rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-heading::after {
        width: 25px;
    }

    .footer-links li a {
        font-size: 0.85rem;
    }

    .footer-contact li {
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
        gap: 0.8rem;
    }

    .footer-bottom-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .footer-container {
        padding: 0 16px;
    }

    .footer-top {
        gap: 1.5rem;
        padding: 30px 0 20px;
    }

    .footer-logo-img {
        height: 32px;
    }

    .footer-logo-text {
        font-size: 1.2rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 0.95rem;
    }

    .footer-links li a {
        font-size: 0.8rem;
    }

    .footer-contact li {
        font-size: 0.8rem;
        gap: 10px;
    }

    .footer-contact li i {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.75rem;
    }

    .footer-bottom-links {
        gap: 0.8rem;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}


/* ========================================== */
/* GET IN TOUCH SECTION - FULLY RESPONSIVE   */
/* ========================================== */

.get-in-touch {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.get-in-touch::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.get-in-touch::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 20s ease-in-out infinite reverse;
}

/* ========================================== */
/* SECTION HEADER                            */
/* ========================================== */

.touch-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.touch-badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.touch-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.touch-title .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.touch-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================== */
/* TOUCH CONTENT - 2 COLUMNS                 */
/* ========================================== */

.touch-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

/* ========================================== */
/* LEFT: FORM                                 */
/* ========================================== */

.touch-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
}

.touch-form-wrapper h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.touch-form .form-group {
    margin-bottom: 1.2rem;
}

.touch-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
}

.touch-form label i {
    color: #ff0000;
    font-size: 0.8rem;
}

.touch-form input,
.touch-form select,
.touch-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    appearance: none;
}

.touch-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.touch-form select option {
    background: #1a1a1a;
    color: #ffffff;
}

.touch-form input::placeholder,
.touch-form textarea::placeholder,
.touch-form select::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.touch-form input:focus,
.touch-form select:focus,
.touch-form textarea:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.02);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.05);
}

.touch-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== SUBMIT BUTTON ===== */
.touch-submit {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
}

.touch-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.3);
    background: linear-gradient(135deg, #cc0000, #990000);
}

.touch-submit:active {
    transform: scale(0.98);
}

/* ===== FORM MESSAGE ===== */
.touch-form-message {
    margin-top: 1rem;
    padding: 12px 16px;
    border-radius: 10px;
    display: none;
    font-weight: 500;
}

.touch-form-message.success {
    display: block;
    background: rgba(0, 255, 0, 0.05);
    color: #4caf50;
    border: 1px solid rgba(0, 255, 0, 0.1);
}

.touch-form-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.05);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

/* ========================================== */
/* RIGHT: CONTACT INFO                       */
/* ========================================== */

.touch-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.touch-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.touch-info-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.touch-info-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===== INFO ITEMS ===== */
.touch-info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.touch-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.touch-info-item:hover {
    background: rgba(255, 0, 0, 0.03);
    transform: translateX(5px);
}

.touch-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 0, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ff0000;
    transition: all 0.3s ease;
}

.touch-info-item:hover .touch-info-icon {
    background: rgba(255, 0, 0, 0.15);
    transform: scale(1.05);
}

.touch-info-text h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.touch-info-text p {
    font-size: 0.95rem;
    color: #ffffff;
}

.touch-info-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.touch-info-text a:hover {
    color: #ff0000;
}

/* ===== SOCIAL LINKS ===== */
.touch-social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.touch-social h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.touch-social-links {
    display: flex;
    gap: 0.8rem;
}

.touch-social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.touch-social-link:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    transform: translateY(-3px) scale(1.05);
}

/* ===== MAP ===== */
.touch-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================== */
/* RESPONSIVE - MOBILE & TABLET              */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .get-in-touch {
        padding: 80px 0;
    }

    .touch-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .touch-title {
        font-size: 2.6rem;
    }

    .touch-form-wrapper,
    .touch-info-card {
        padding: 2rem;
    }

    .touch-form-wrapper h3,
    .touch-info-card h3 {
        font-size: 1.4rem;
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .get-in-touch {
        padding: 60px 0;
    }

    .touch-header {
        margin-bottom: 2.5rem;
    }

    .touch-title {
        font-size: 2.2rem;
    }

    .touch-subtitle {
        font-size: 1rem;
    }

    .touch-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 550px;
        margin: 0 auto;
    }

    .touch-form-wrapper,
    .touch-info-card {
        padding: 1.8rem;
        border-radius: 16px;
    }

    .touch-form-wrapper h3,
    .touch-info-card h3 {
        font-size: 1.3rem;
    }

    .touch-info-desc {
        font-size: 0.9rem;
    }

    .touch-form label {
        font-size: 0.8rem;
    }

    .touch-form input,
    .touch-form select,
    .touch-form textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .touch-info-item {
        padding: 0.6rem 0.8rem;
    }

    .touch-info-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .touch-info-text p {
        font-size: 0.9rem;
    }

    .touch-submit {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .touch-social-link {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .touch-map iframe {
        height: 160px;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .get-in-touch {
        padding: 50px 0;
    }

    .touch-header {
        margin-bottom: 2rem;
    }

    .touch-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
        letter-spacing: 1px;
    }

    .touch-title {
        font-size: 1.8rem;
    }

    .touch-subtitle {
        font-size: 0.9rem;
    }

    .touch-content {
        gap: 1.5rem;
        max-width: 100%;
    }

    .touch-form-wrapper,
    .touch-info-card {
        padding: 1.2rem;
        border-radius: 14px;
    }

    .touch-form-wrapper h3,
    .touch-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .touch-info-desc {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .touch-form .form-group {
        margin-bottom: 0.8rem;
    }

    .touch-form label {
        font-size: 0.75rem;
        gap: 6px;
    }

    .touch-form label i {
        font-size: 0.7rem;
    }

    .touch-form input,
    .touch-form select,
    .touch-form textarea {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .touch-form textarea {
        min-height: 100px;
    }

    .touch-info-items {
        gap: 0.6rem;
    }

    .touch-info-item {
        padding: 0.5rem 0.6rem;
        gap: 0.7rem;
        border-radius: 8px;
    }

    .touch-info-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .touch-info-text h4 {
        font-size: 0.7rem;
    }

    .touch-info-text p {
        font-size: 0.85rem;
    }

    .touch-submit {
        padding: 10px 20px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .touch-social {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .touch-social h4 {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .touch-social-links {
        gap: 0.6rem;
    }

    .touch-social-link {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .touch-map iframe {
        height: 140px;
        border-radius: 8px;
    }

    .touch-form-message {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
}

/* === EXTRA SMALL MOBILE (below 380px) === */
@media screen and (max-width: 600px) {
    .get-in-touch {
        padding: 40px 0;
    }

    .touch-title {
        font-size: 1.5rem;
    }

    .touch-form-wrapper,
    .touch-info-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .touch-form-wrapper h3,
    .touch-info-card h3 {
        font-size: 1rem;
    }

    .touch-form input,
    .touch-form select,
    .touch-form textarea {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .touch-info-item {
        padding: 0.4rem 0.5rem;
    }

    .touch-info-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.7rem;
    }

    .touch-info-text p {
        font-size: 0.8rem;
    }

    .touch-submit {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .touch-social-link {
        width: 30px;
        height: 30px;
        font-size: 0.65rem;
    }

    .touch-map iframe {
        height: 120px;
    }
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.touch-header {
    animation: fadeInUp 0.8s ease forwards;
}

.touch-form-wrapper {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.touch-info-wrapper {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}


.logo-image {
    height: 45px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    object-fit: contain;
    /* REMOVE: filter: brightness(0) invert(1); */
}





/* ========================================== */
/* OUR PROCESS SECTION                        */
/* ========================================== */

.our-process {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.our-process::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 25s ease-in-out infinite;
}

.our-process::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRed 20s ease-in-out infinite reverse;
}

/* ========================================== */
/* SECTION HEADER                            */
/* ========================================== */

.process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.process-badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.process-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.process-header h2 .highlight {
    color: #ff0000;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.process-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================== */
/* PROCESS TIMELINE                          */
/* ========================================== */

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Vertical Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 35px;
    width: 3px;
    background: linear-gradient(180deg, #ff0000, rgba(255, 0, 0, 0.1));
    border-radius: 2px;
}

/* ========================================== */
/* PROCESS STEP                              */
/* ========================================== */

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    padding-left: 20px;
}

/* Step Number */
.step-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff0000;
    background: #0a0a0a;
    padding: 0 10px;
    min-width: 70px;
    position: relative;
    z-index: 2;
}

/* Step Content */
.step-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    transition: all 0.4s ease;
    flex: 1;
}

.step-content:hover {
    transform: translateX(10px);
    border-color: rgba(255, 0, 0, 0.15);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.05);
}

/* Step Icon */
.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ff0000;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.step-content:hover .step-icon {
    background: rgba(255, 0, 0, 0.1);
    transform: scale(1.05) rotate(-5deg);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===== STEP DETAILS ===== */
.step-details {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.step-details li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.step-details li i {
    color: #ff0000;
    font-size: 0.8rem;
}

/* ===== STEP ARROW ===== */
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    color: rgba(255, 0, 0, 0.2);
    font-size: 1.2rem;
}

.step-arrow i {
    animation: arrowPulse 2s ease-in-out infinite;
}

.step-arrow i:nth-child(2) { animation-delay: 0.3s; }

/* ========================================== */
/* PROCESS CTA                               */
/* ========================================== */

.process-cta {
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(255, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-cta-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.process-cta-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-red {
    background: #ff0000;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
    background: #cc0000;
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-header {
    animation: fadeInUp 0.8s ease forwards;
}

.process-step {
    animation: fadeInUp 0.8s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

/* === TABLET (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .our-process {
        padding: 80px 0;
    }

    .process-header h2 {
        font-size: 2.6rem;
    }

    .process-timeline::before {
        left: 30px;
    }

    .step-number {
        min-width: 60px;
        font-size: 1rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-arrow {
        min-width: 30px;
        font-size: 1rem;
    }
}

/* === MOBILE (480px - 768px) === */
@media screen and (max-width: 768px) {
    .our-process {
        padding: 60px 0;
    }

    .process-header {
        margin-bottom: 2.5rem;
    }

    .process-header h2 {
        font-size: 2.2rem;
    }

    .process-header p {
        font-size: 1rem;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        gap: 1rem;
        padding-left: 10px;
    }

    .step-number {
        font-size: 0.8rem;
        min-width: 40px;
        padding: 0 5px;
    }

    .step-content {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .step-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .step-details {
        gap: 0.8rem;
    }

    .step-details li {
        font-size: 0.8rem;
    }

    .step-arrow {
        display: none;
    }

    .process-cta {
        padding: 1.8rem 1.2rem;
        margin-top: 2.5rem;
    }

    .process-cta-content h3 {
        font-size: 1.2rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

/* === SMALL MOBILE (below 480px) === */
@media screen and (max-width: 480px) {
    .our-process {
        padding: 50px 0;
    }

    .process-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .process-header h2 {
        font-size: 1.8rem;
    }

    .process-header p {
        font-size: 0.9rem;
    }

    .process-timeline::before {
        left: 15px;
    }

    .process-step {
        gap: 0.6rem;
        padding-left: 5px;
    }

    .step-number {
        font-size: 0.7rem;
        min-width: 30px;
    }

    .step-content {
        padding: 1rem;
        border-radius: 10px;
    }

    .step-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .step-details {
        gap: 0.5rem;
        flex-direction: column;
    }

    .step-details li {
        font-size: 0.75rem;
    }

    .process-cta {
        padding: 1.2rem 1rem;
        margin-top: 2rem;
        border-radius: 12px;
    }

    .process-cta-content h3 {
        font-size: 1rem;
    }

    .process-cta-content p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}



















































/* ========================================== */
/* CONTACT FORM - ERROR STYLES               */
/* ========================================== */

/* Error Message */
.error-message {
    display: block;
    color: #ff0000;
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 500;
}

/* Input Error State */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff0000 !important;
    background: rgba(255, 0, 0, 0.02);
}

/* Form Message */
.touch-form-message {
    margin-top: 1rem;
    padding: 14px 18px;
    border-radius: 10px;
    display: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.touch-form-message.success {
    display: block;
    background: rgba(0, 255, 0, 0.05);
    color: #4caf50;
    border: 1px solid rgba(0, 255, 0, 0.1);
}

.touch-form-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.05);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

/* Submit Button Loading */
.touch-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ========================================== */
/* RESPONSIVE ERROR STYLES                   */
/* ========================================== */

@media screen and (max-width: 768px) {
    .error-message {
        font-size: 0.75rem;
    }
    
    .touch-form-message {
        font-size: 0.85rem;
        padding: 12px 14px;
    }
}

.blog-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px 0; /* 40px top & bottom, 0 left & right */
}













.service-box h3 {
    margin: 0 0 15px;
    font-size: 28px;
}

.service-box p {
    margin: 0 0 20px;
    line-height: 1.7;
}

.service-features {
    margin: 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.service-features li i {
    margin-right: 8px;
}




/* ========================================== */
/* WHY CHOOSE US - BLOG SECTION               */
/* ========================================== */

.why-choose-us-section {
    margin: 40px 0;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Left Border Glow */
.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff0000, #cc0000);
    border-radius: 4px 0 0 4px;
}

/* Background Glow Effect */
.why-choose-us-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== HEADING ===== */
.why-choose-us-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-choose-us-section h3::before {
    content: '✦';
    color: #ff0000;
    font-size: 1.8rem;
}

/* ===== PARAGRAPHS ===== */
.why-choose-us-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.why-choose-us-section p:last-child {
    margin-bottom: 0;
}

/* ===== HIGHLIGHTED TEXT ===== */
.why-choose-us-section .highlight-text {
    color: #ff0000;
    font-weight: 600;
}

.why-choose-us-section .bold-text {
    color: #ffffff;
    font-weight: 600;
}

/* ===== KEY POINTS LIST ===== */
.why-choose-us-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.why-choose-us-points .point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-choose-us-points .point-item:hover {
    background: rgba(255, 0, 0, 0.03);
    border-color: rgba(255, 0, 0, 0.1);
    transform: translateX(5px);
}

.why-choose-us-points .point-item i {
    color: #ff0000;
    font-size: 1rem;
    min-width: 20px;
}

.why-choose-us-points .point-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

@media screen and (max-width: 1024px) {
    .why-choose-us-section {
        padding: 40px 30px;
        margin: 30px 0;
    }

    .why-choose-us-section h3 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .why-choose-us-section {
        padding: 30px 20px;
        margin: 25px 0;
        border-radius: 12px;
    }

    .why-choose-us-section h3 {
        font-size: 1.4rem;
    }

    .why-choose-us-section h3::before {
        font-size: 1.4rem;
    }

    .why-choose-us-section p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .why-choose-us-points {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .why-choose-us-points .point-item {
        padding: 8px 14px;
    }

    .why-choose-us-points .point-item span {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .why-choose-us-section {
        padding: 20px 16px;
        margin: 20px 0;
        border-radius: 10px;
    }

    .why-choose-us-section h3 {
        font-size: 1.2rem;
    }

    .why-choose-us-section h3::before {
        font-size: 1.2rem;
    }

    .why-choose-us-section p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .why-choose-us-points .point-item {
        padding: 6px 12px;
    }

    .why-choose-us-points .point-item span {
        font-size: 0.85rem;
    }
}

/* ========================================== */
/* RESPONSIVE & SEO-FRIENDLY DEVELOPMENT      */
/* ========================================== */

.responsive-seo-section {
    margin: 50px 0;
    padding: 0;
    position: relative;
}

/* ===== HEADING ===== */
.responsive-seo-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1rem;
}

.responsive-seo-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    border-radius: 2px;
}

/* ===== IMAGE ===== */
.responsive-seo-section .post-trend-image {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    margin: 1.5rem 0 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.responsive-seo-section .post-trend-image:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.05);
}

.responsive-seo-section .post-trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.responsive-seo-section .post-trend-image:hover img {
    transform: scale(1.03);
}

/* ===== PARAGRAPHS ===== */
.responsive-seo-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.responsive-seo-section p:last-child {
    margin-bottom: 0;
}

/* ===== HIGHLIGHTED KEYWORDS ===== */
.responsive-seo-section .highlight-keyword {
    color: #ff0000;
    font-weight: 600;
}

.responsive-seo-section .bold-keyword {
    color: #ffffff;
    font-weight: 600;
}

/* ========================================== */
/* KEY FEATURES GRID                         */
/* ========================================== */

.responsive-seo-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin: 1.8rem 0;
}

.responsive-seo-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.responsive-seo-features .feature-item:hover {
    background: rgba(255, 0, 0, 0.03);
    border-color: rgba(255, 0, 0, 0.1);
    transform: translateY(-5px);
}

.responsive-seo-features .feature-item i {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.responsive-seo-features .feature-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

@media screen and (max-width: 1024px) {
    .responsive-seo-section h2 {
        font-size: 2rem;
    }

    .responsive-seo-section .post-trend-image {
        height: 280px;
    }

    .responsive-seo-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .responsive-seo-section {
        margin: 30px 0;
    }

    .responsive-seo-section h2 {
        font-size: 1.6rem;
        padding-bottom: 0.8rem;
    }

    .responsive-seo-section h2::after {
        width: 60px;
        height: 3px;
    }

    .responsive-seo-section .post-trend-image {
        height: 200px;
        border-radius: 12px;
        margin: 1rem 0 1.5rem;
    }

    .responsive-seo-section p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .responsive-seo-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .responsive-seo-features .feature-item {
        padding: 1rem 0.8rem;
    }

    .responsive-seo-features .feature-item i {
        font-size: 1.5rem;
    }

    .responsive-seo-features .feature-item span {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .responsive-seo-section {
        margin: 20px 0;
    }

    .responsive-seo-section h2 {
        font-size: 1.3rem;
        padding-bottom: 0.6rem;
    }

    .responsive-seo-section h2::after {
        width: 50px;
        height: 3px;
    }

    .responsive-seo-section .post-trend-image {
        height: 160px;
        border-radius: 10px;
        margin: 0.8rem 0 1.2rem;
    }

    .responsive-seo-section p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .responsive-seo-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .responsive-seo-features .feature-item {
        padding: 0.8rem 0.5rem;
        border-radius: 8px;
    }

    .responsive-seo-features .feature-item i {
        font-size: 1.2rem;
    }

    .responsive-seo-features .feature-item span {
        font-size: 0.7rem;
    }
}





/* ========================================== */
/* CONCLUSION SECTION - BLOG                  */
/* ========================================== */

.post-conclusion {
    background: rgba(255, 0, 0, 0.03);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    border-left: 5px solid #ff0000;
    margin: 2.5rem 0 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Background Glow Effect */
.post-conclusion::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Top Border Accent */
.post-conclusion::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1));
    border-radius: 0 0 0 3px;
}

/* ===== HEADING ===== */
.post-conclusion h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-conclusion h3::before {
    content: '◆';
    color: #ff0000;
    font-size: 1.2rem;
}

/* ===== PARAGRAPHS ===== */
.post-conclusion p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.post-conclusion p:last-child {
    margin-bottom: 0;
}

/* ===== HIGHLIGHTED TEXT ===== */
.post-conclusion .highlight-text {
    color: #ff0000;
    font-weight: 600;
}

.post-conclusion .bold-text {
    color: #ffffff;
    font-weight: 600;
}

/* ===== CONCLUSION STATS / ICON ROW ===== */
.post-conclusion-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.post-conclusion-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-conclusion-stats .stat-item i {
    font-size: 1.2rem;
    color: #ff0000;
}

.post-conclusion-stats .stat-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== CTA BUTTON (Optional) ===== */
.post-conclusion .conclusion-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #ff0000;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.post-conclusion .conclusion-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.35);
    background: #cc0000;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

@media screen and (max-width: 1024px) {
    .post-conclusion {
        padding: 2rem 2rem;
        border-radius: 14px;
    }

    .post-conclusion h3 {
        font-size: 1.6rem;
    }

    .post-conclusion p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .post-conclusion {
        padding: 1.8rem 1.5rem;
        border-left-width: 4px;
        border-radius: 12px;
        margin: 2rem 0;
    }

    .post-conclusion h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .post-conclusion h3::before {
        font-size: 1rem;
    }

    .post-conclusion p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .post-conclusion-stats {
        gap: 1.5rem;
        padding: 1rem 0;
        flex-wrap: wrap;
    }

    .post-conclusion-stats .stat-item span {
        font-size: 0.8rem;
    }

    .post-conclusion .conclusion-cta {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .post-conclusion {
        padding: 1.2rem 1rem;
        border-left-width: 3px;
        border-radius: 10px;
        margin: 1.5rem 0;
    }

    .post-conclusion h3 {
        font-size: 1.2rem;
    }

    .post-conclusion h3::before {
        font-size: 0.9rem;
    }

    .post-conclusion p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .post-conclusion-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .post-conclusion .conclusion-cta {
        padding: 8px 20px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
}