/* ==========================================
   TEZZ MARKETING - PREMIUM 3D DESIGN
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium 3-Color Palette */
    --primary-red: #DC143C;
    --dark-black: #000000;
    --pure-white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #333333;
    --light-red: #FF6B6B;
    
    /* 3D Shadows - Premium */
    --shadow-sm: 0 2px 8px rgba(220, 20, 60, 0.08);
    --shadow-md: 0 8px 24px rgba(220, 20, 60, 0.12);
    --shadow-lg: 0 16px 48px rgba(220, 20, 60, 0.16);
    --shadow-xl: 0 24px 64px rgba(220, 20, 60, 0.2);
    --shadow-3d: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(220, 20, 60, 0.1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-gray);
    background: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   NAVBAR - PREMIUM 3D DESIGN
   ========================================== */

.navbar-glassmorphism {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 3px solid var(--primary-red);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08) rotateY(5deg);
    box-shadow: var(--shadow-lg);
}

.nav-link {
    color: #ffffff !important;
    margin-left: 1.5rem;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: var(--primary-red);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--light-red) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: 2px solid var(--primary-red);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 20, 60, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23DC143C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================
   HERO SECTION - PREMIUM 3D
   ========================================== */

.hero {
    background: linear-gradient(135deg, var(--dark-black) 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--pure-white);
    padding: 80px 20px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1), transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08), transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: slideInUp 0.8s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--pure-white);
    letter-spacing: -1px;
}

.hero h1 .highlight {
    color: var(--primary-red);
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.4);
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: #cccccc;
    font-weight: 300;
    line-height: 1.8;
}

.hero .btn-primary,
.hero .btn-secondary {
    margin: 0 0.5rem 1rem;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover,
.hero .btn-secondary:hover {
    transform: translateY(-3px);
}

/* ==========================================
   BUTTONS - PREMIUM 3D STYLES
   ========================================== */

.btn-primary,
.btn-secondary,
.btn-primary-custom,
.btn-secondary-custom {
    padding: 14px 40px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    box-shadow: var(--shadow-3d);
}

.btn-primary,
.btn-primary-custom {
    background: var(--primary-red);
    color: var(--pure-white);
}

.btn-primary::before,
.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
}

.btn-primary:hover,
.btn-primary-custom:hover {
    background: #b01030;
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-primary:hover::before,
.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary:active,
.btn-primary-custom:active {
    transform: translateY(-1px);
}

.btn-secondary,
.btn-secondary-custom {
    background: var(--pure-white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    margin-left: 1rem;
}

.btn-secondary:hover,
.btn-secondary-custom:hover {
    background: var(--primary-red);
    color: var(--pure-white);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.3);
    transform: translateY(-3px);
}

.btn-secondary:active,
.btn-secondary-custom:active {
    transform: translateY(-1px);
}

/* ==========================================
   SECTIONS - PREMIUM STYLING
   ========================================== */

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-black);
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

section {
    padding: 60px 20px;
}

@media (min-width: 768px) {
    section {
        padding: 100px 50px;
    }
}

.section-padding {
    padding: 60px 20px;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 100px 50px;
    }
}

.section-light {
    background: var(--pure-white);
}

.section-dark {
    background: var(--dark-black);
    color: var(--pure-white);
}

.section-dark .section-title {
    color: var(--pure-white);
}

.section-dark .section-subtitle {
    color: #cccccc;
}

/* ==========================================
   SERVICE CARDS - PREMIUM 3D
   ========================================== */

.service-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 1.5rem auto;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    border: 1px solid var(--medium-gray);
    transform-origin: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 24px 60px rgba(220, 20, 60, 0.2);
    border-color: var(--primary-red);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotateY(10deg);
    box-shadow: 0 16px 40px rgba(220, 20, 60, 0.25);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-black);
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-red);
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================
   SOCIAL PLATFORM CARDS
   ========================================== */

.social-platform-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-red);
    transform-origin: center;
}

.social-platform-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 28px 70px rgba(220, 20, 60, 0.25);
}

.social-platform-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--light-gray);
    border-bottom: 2px solid var(--primary-red);
}

.social-platform-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    background: var(--primary-red);
    transition: all 0.4s ease;
}

.social-platform-card:hover .social-platform-icon {
    transform: scale(1.1) rotateZ(-10deg);
}

.social-platform-info h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
}

.social-platform-info p {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.social-platform-content {
    padding: 2rem;
}

.social-platform-description h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark-black);
}

.social-platform-description p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0 0 1.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.benefit-item::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

/* ==========================================
   BUSINESS DEVELOPMENT SECTION
   ========================================== */

.business-dev-section {
    padding: 100px 20px;
    background: var(--dark-black);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .business-dev-section {
        padding: 100px 50px;
    }
}

.business-dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.business-dev-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(220, 20, 60, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.business-dev-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.business-dev-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15), rgba(220, 20, 60, 0.05));
    box-shadow: 0 24px 60px rgba(220, 20, 60, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
}

.business-dev-card:hover::before {
    opacity: 1;
}

.business-dev-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.business-dev-card:hover .business-dev-icon {
    transform: scale(1.15) rotateZ(10deg);
    box-shadow: 0 16px 40px rgba(220, 20, 60, 0.3);
}

.business-dev-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
    font-weight: 700;
    transition: all 0.3s ease;
}

.business-dev-card:hover h3 {
    color: var(--light-red);
}

.business-dev-card p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   FOOTER - PREMIUM STYLING
   ========================================== */

.footer-section {
    background: linear-gradient(135deg, var(--dark-black) 0%, #1a1a1a 100%);
    color: var(--pure-white);
    padding: 60px 20px 20px;
    border-top: 3px solid var(--primary-red);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(220, 20, 60, 0.1);
}

@media (min-width: 768px) {
    .footer-section {
        padding: 80px 50px 20px;
    }
}

.footer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* ==========================================
   CHATBOT BUTTON - INTERACTIVE 3D
   ========================================== */

.chatbot-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border: none;
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.chatbot-button:hover {
    transform: scale(1.1) translateY(-15px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.4);
}

.chatbot-button:active {
    transform: scale(0.95);
}

/* ==========================================
   CHATBOT MODAL - PREMIUM DESIGN
   ========================================== */

.chatbot-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.chatbot-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-content {
    background: var(--pure-white);
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--pure-white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header h2 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.chatbot-body {
    padding: 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chatbot-message {
    font-size: 1.05rem;
    color: var(--dark-black);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.chatbot-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.chatbot-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.3px;
}

.chatbot-btn.whatsapp {
    background: var(--primary-red);
    color: var(--pure-white);
    box-shadow: var(--shadow-lg);
}

.chatbot-btn.whatsapp:hover {
    background: #b01030;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.3);
}

.chatbot-btn.close {
    background: var(--medium-gray);
    color: var(--dark-black);
}

.chatbot-btn.close:hover {
    background: #d0d0d0;
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================== */

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    .hero {
        min-height: 85vh;
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn-primary,
    .hero .btn-secondary {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 60px;
    }

    .navbar {
        padding: 0.5rem;
    }

    .nav-link {
        margin-left: 0.75rem;
        font-size: 0.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .business-dev-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .chatbot-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }

    .chatbot-content {
        width: 95%;
        max-width: 100%;
    }

    .chatbot-body {
        padding: 1.5rem;
        min-height: 150px;
    }

    .chatbot-message {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .footer-section {
        padding: 40px 20px 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 40px;
    }

    .nav-link {
        margin-left: 0.5rem;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.2rem;
        margin: 1rem auto;
    }

    .social-platform-card {
        margin-bottom: 1rem;
    }

    .social-platform-header {
        padding: 1.5rem;
        gap: 1rem;
    }

    .social-platform-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .social-platform-content {
        padding: 1.5rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* ==========================================
   PRICING CARDS - PREMIUM DESIGN
   ========================================== */

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 2rem;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow: 0 24px 60px rgba(220, 20, 60, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15), rgba(220, 20, 60, 0.07));
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.25);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary-red);
    color: var(--pure-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 1;
}

.pricing-badge-featured {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--pure-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.3);
}

.pricing-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 1.3rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.currency {
    color: var(--light-red);
    font-size: 1.2rem;
    font-weight: 700;
}

.price {
    color: var(--light-red);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    color: #999;
    font-size: 1rem;
    align-self: flex-end;
    margin-bottom: 0.3rem;
}

.pricing-features {
    flex: 1;
    padding: 1.5rem 2rem;
    overflow-y: auto;
    max-height: 600px;
    position: relative;
    z-index: 1;
}

.features-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li,
.benefits-list li {
    color: #cccccc;
    padding: 0.7rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.features-list li i,
.benefits-list li i {
    color: var(--light-red);
    font-size: 1rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
    width: 20px;
}

.benefits-list li {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.pricing-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
}

.pricing-footer .btn {
    flex: 1;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

/* Pricing Section Scrollbar Styling */
.pricing-features::-webkit-scrollbar {
    width: 6px;
}

.pricing-features::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.pricing-features::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

.pricing-features::-webkit-scrollbar-thumb:hover {
    background: var(--light-red);
}

@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .pricing-header {
        padding: 1.5rem;
    }

    .pricing-title {
        font-size: 1.1rem;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-features {
        padding: 1rem 1.5rem;
        max-height: 400px;
    }

    .pricing-footer {
        padding: 1rem 1.5rem;
    }

    .features-list li,
    .benefits-list li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
}

/* ==========================================
   ANIMATIONS & TRANSITIONS
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-red {
    color: var(--primary-red);
}

.text-white {
    color: var(--pure-white);
}

.text-dark {
    color: var(--dark-black);
}

.text-light {
    color: var(--dark-gray);
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Row and Grid */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.col-md-3,
.col-md-4,
.col-md-6,
.col-lg-4,
.col-lg-6 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.col-md-3 {
    flex: 0 0 25%;
}

.col-md-4 {
    flex: 0 0 33.333%;
}

.col-md-6 {
    flex: 0 0 50%;
}

.col-lg-4 {
    flex: 0 0 33.333%;
}

.col-lg-6 {
    flex: 0 0 50%;
}

@media (max-width: 768px) {
    .col-md-3,
    .col-md-4,
    .col-md-6,
    .col-lg-4,
    .col-lg-6 {
        flex: 0 0 100%;
    }
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Links */
a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-red);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-black);
    font-weight: 700;
}

section h1 {
    color: var(--dark-black);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--pure-white);
}

