/* ===== RESET & VARIABLES ===== */
:root {
    --primary-red: #ce202a;      /* Your logo primary color */
    --secondary-black: #040404;   /* Your logo secondary color */
    --accent-gray: #2d2d2d;       /* Lighter black for accents */
    --bg-soft: #fefcf5;           /* Soft white background */
    --pure-white: #ffffff;
    --shadow-sm: 0 8px 20px rgba(4,4,4,0.06);
    --shadow-hover: 0 15px 30px rgba(206,32,42,0.1);
    --gradient-bg: linear-gradient(135deg, var(--secondary-black) 0%, #ce202a 100%);
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    position: relative;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: white;
    border-bottom: 1px solid rgba(4,4,4,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    width: 85%;
    margin: 0 auto;
}

.logo {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

.logo:hover {
    color: #ce202a;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a:hover {
    color: #ce202a;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #040404;
    min-width: 280px;
    padding: 0.5rem 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    color: white;
    font-size: 0.95rem;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #ce202a;
    color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Responsive Styles - UPDATED */
@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        color: var(--primary-red);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-black);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        width: 100%;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        color: white;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu a:hover {
        background: var(--primary-red);
        color: white;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        min-width: auto;
        background: rgba(0,0,0,0.3);
        margin-top: 0.5rem;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .dropdown-menu a:hover {
        background: var(--primary-red);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-soft);
    color: var(--secondary-black);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* ===== TYPOGRAPHY - Mobile First ===== */
h1, h2, h3, h4 {
    color: var(--secondary-black);
    line-height: 1.2;
}

h1 { 
    font-size: 2.2rem; 
    font-weight: 800; 
    letter-spacing: -0.02em; 
}

h2 { 
    font-size: 1.8rem; 
    font-weight: 700; 
    margin-bottom: 1rem; 
}

h3 { 
    font-size: 1.4rem; 
    font-weight: 600; 
}

h4 { 
    font-size: 1.2rem; 
    font-weight: 600; 
}

/* Tablet (768px and up) */
@media screen and (min-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.3rem; }
}

/* Desktop (1024px and up) */
@media screen and (min-width: 1024px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.8rem; }
}

.section-header {
    text-align: center;
    margin: 40px 0 30px;
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .section-header {
        margin: 60px 0 40px;
    }
}

.section-header h2 {
    position: relative;
    display: inline-block;
    font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media screen and (min-width: 1024px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-red);
}

@media screen and (min-width: 768px) {
    .section-header h2:after {
        width: 60px;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(4,4,4,0.1);
    background: white;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .navbar {
        padding: 20px 0;
    }
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo-icon {
    background: var(--primary-red);
    width: 38px;
    height: 38px;
    border-radius: 10px 3px 10px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    transform: rotate(-2deg);
    box-shadow: 0 4px 0 var(--secondary-black);
    transition: transform 0.3s;
}

@media screen and (min-width: 768px) {
    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
}

.logo-area:hover .logo-icon {
    transform: rotate(0deg);
}

.logo-text .top {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary-red);
}

@media screen and (min-width: 768px) {
    .logo-text .top {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
}

.logo-text .main {
    color: var(--secondary-black);
    font-weight: 800;
    font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
    .logo-text .main {
        font-size: 1.4rem;
    }
}

.nav-links {
    display: flex;
    gap: 15px;
    font-weight: 500;
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (min-width: 480px) {
    .nav-links {
        gap: 20px;
    }
}

@media screen and (min-width: 768px) {
    .nav-links {
        gap: 32px;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-black);
    transition: 0.2s;
    position: relative;
    font-size: 0.9rem;
    padding: 5px 0;
}

@media screen and (min-width: 768px) {
    .nav-links a {
        font-size: 1rem;
    }
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
}

@media screen and (max-width: 480px) {
    .nav-links a.active:after {
        bottom: -2px;
        height: 1.5px;
    }
}

/* ===== BUTTONS ===== */
.btn-outline {
    border: 2px solid var(--primary-red);
    background: transparent;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-red);
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    text-align: center;
}

@media screen and (min-width: 480px) {
    .btn-outline {
        padding: 10px 26px;
        font-size: 0.95rem;
    }
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

.btn-solid {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 0 var(--secondary-black);
    transition: 0.2s;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

@media screen and (min-width: 480px) {
    .btn-solid {
        padding: 12px 32px;
        font-size: 0.95rem;
        box-shadow: 0 6px 0 var(--secondary-black);
    }
}

.btn-solid:hover {
    background: #b01b24;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--secondary-black);
}

@media screen and (min-width: 768px) {
    .btn-solid:hover {
        box-shadow: 0 8px 0 var(--secondary-black);
    }
}

.btn-service {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--secondary-black);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

@media screen and (min-width: 480px) {
    .btn-service {
        padding: 8px 20px;
        font-size: 0.9rem;
        margin-top: 20px;
    }
}

.btn-service:hover {
    background: var(--primary-red);
    color: white;
}

/* ===== HERO SECTION ===== */
.page-hero {
    padding: 40px 0 30px;
    background: linear-gradient(135deg, rgba(206,32,42,0.05) 0%, rgba(4,4,4,0.05) 100%);
    border-radius: 0 0 30px 30px;
}

@media screen and (min-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
        border-radius: 0 0 50px 50px;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(206,32,42,0.12);
    color: var(--secondary-black);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 15px;
    border-radius: 40px;
    margin-bottom: 20px;
    border: 1px solid rgba(206,32,42,0.3);
}

@media screen and (min-width: 768px) {
    .hero-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
        margin-bottom: 24px;
    }
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
    padding: 40px 0;
}

@media screen and (min-width: 768px) {
    .service-detail {
        padding: 60px 0;
    }
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .service-grid {
        gap: 50px;
        margin-bottom: 60px;
    }
}

.service-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
}

@media screen and (min-width: 480px) {
    .service-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px) {
    .service-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: 40px 0;
    }
}

.stat-card {
    background: var(--pure-white);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

@media screen and (min-width: 768px) {
    .stat-card {
        padding: 20px;
        border-radius: 20px;
    }
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    display: block;
}

@media screen and (min-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
}

.stat-label {
    font-size: 0.85rem;
    color: var(--secondary-black);
}

@media screen and (min-width: 768px) {
    .stat-label {
        font-size: 0.9rem;
    }
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media screen and (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 50px 0;
    }
}

.feature-card {
    background: var(--pure-white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border: 1px solid rgba(4,4,4,0.08);
}

@media screen and (min-width: 768px) {
    .feature-card {
        padding: 30px;
        border-radius: 30px;
    }
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

@media screen and (min-width: 768px) {
    .feature-card:hover {
        transform: translateY(-10px);
    }
}

.feature-icon {
    background: rgba(206,32,42,0.1);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

@media screen and (min-width: 768px) {
    .feature-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 40px 0;
    padding: 0 10px;
}

@media screen and (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 50px 0;
    }
}

.pricing-card {
    background: var(--pure-white);
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(4,4,4,0.08);
}

@media screen and (min-width: 768px) {
    .pricing-card {
        padding: 40px 30px;
        border-radius: 30px;
    }
}

.pricing-card.featured {
    border: 2px solid var(--primary-red);
    transform: scale(1);
}

@media screen and (min-width: 768px) {
    .pricing-card.featured {
        transform: scale(1.05);
    }
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: white;
    padding: 4px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
}

@media screen and (min-width: 768px) {
    .pricing-badge {
        padding: 4px 20px;
        font-size: 0.85rem;
    }
}

.pricing-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-black);
}

@media screen and (min-width: 768px) {
    .pricing-card h4 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
    .price {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
}

.price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--accent-gray);
}

@media screen and (min-width: 768px) {
    .price small {
        font-size: 1rem;
    }
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .pricing-features {
        margin: 30px 0;
    }
}

.pricing-features li {
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
}

@media screen and (min-width: 768px) {
    .pricing-features li {
        margin: 15px 0;
        font-size: 1rem;
    }
}

.pricing-features li:before {
    content: '✓';
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ===== PROCESS ===== */
.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

@media screen and (min-width: 640px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 60px 0;
    }
}

.process-step {
    text-align: center;
    position: relative;
    background: var(--pure-white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

@media screen and (min-width: 1024px) {
    .process-step {
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
}

.process-step:not(:last-child):after {
    content: '↓';
    display: block;
    margin-top: 20px;
    font-size: 1.5rem;
    color: var(--primary-red);
}

@media screen and (min-width: 640px) and (max-width: 1023px) {
    .process-step:nth-child(2):after {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .process-step:not(:last-child):after {
        content: '→';
        position: absolute;
        right: -20px;
        top: 30px;
        font-size: 2rem;
        display: block;
        margin-top: 0;
    }
}

.step-number {
    background: var(--primary-red);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

@media screen and (min-width: 768px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin: 0 auto 20px;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media screen and (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 50px 0;
    }
}

.testimonial-card {
    background: var(--pure-white);
    padding: 25px;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(206,32,42,0.2);
}

@media screen and (min-width: 768px) {
    .testimonial-card {
        padding: 35px;
        border-radius: 30px;
    }
}

.stars {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
    .stars {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

.client-info {
    margin-top: 15px;
}

@media screen and (min-width: 768px) {
    .client-info {
        margin-top: 20px;
    }
}

.client-name {
    font-weight: 700;
    color: var(--secondary-black);
    font-size: 1.1rem;
}

.client-title {
    font-size: 0.8rem;
    color: var(--accent-gray);
}

@media screen and (min-width: 768px) {
    .client-title {
        font-size: 0.85rem;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--secondary-black);
    color: white;
    border-radius: 40px 40px 20px 20px;
    padding: 40px 20px;
    margin: 50px 0 30px;
    background-image: radial-gradient(circle at 80% 30%, rgba(206,32,42,0.3) 0%, transparent 40%);
}

@media screen and (min-width: 768px) {
    .contact-section {
        border-radius: 60px 60px 30px 30px;
        padding: 64px 40px;
        margin: 80px 0 40px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .contact-grid {
        gap: 50px;
    }
}

.contact-info h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
    .contact-info h3 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media screen and (min-width: 480px) {
    .contact-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px) {
    .contact-details {
        gap: 30px;
        margin: 40px 0;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media screen and (min-width: 768px) {
    .contact-item {
        gap: 15px;
    }
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    min-width: 30px;
}

@media screen and (min-width: 768px) {
    .contact-item i {
        font-size: 1.8rem;
    }
}

.contact-social {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
    .contact-social {
        gap: 25px;
        margin-top: 30px;
        justify-content: flex-start;
    }
}

.contact-social a {
    color: white;
    font-size: 1.8rem;
    transition: 0.2s;
}

@media screen and (min-width: 768px) {
    .contact-social a {
        font-size: 2rem;
    }
}

.contact-social a:hover {
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer-bottom {
    text-align: center;
    padding: 25px 0 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    margin-top: 30px;
    font-size: 0.9rem;
}

@media screen and (min-width: 768px) {
    .footer-bottom {
        padding: 32px 0 20px;
        margin-top: 40px;
        font-size: 1rem;
    }
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 15px 0;
    color: var(--accent-gray);
    font-size: 0.9rem;
}

@media screen and (min-width: 768px) {
    .breadcrumbs {
        padding: 20px 0;
        font-size: 1rem;
    }
}

.breadcrumbs a {
    color: var(--primary-red);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ===== UTILITY CLASSES ===== */
.hide-mobile {
    display: none;
}

@media screen and (min-width: 768px) {
    .hide-mobile {
        display: block;
    }
}

.show-mobile {
    display: block;
}

@media screen and (min-width: 768px) {
    .show-mobile {
        display: none;
    }
}

/* ===== TOUCH FRIENDLY ===== */
button, a, .feature-card, .pricing-card, .service-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

button:active, .btn-solid:active, .btn-outline:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--secondary-black);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

@media screen and (min-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
    }
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card, .service-card, .pricing-card, .testimonial-card {
    animation: fadeIn 0.5s ease-out;
}

/* ===== IMAGE RESPONSIVENESS ===== */
img {
    max-width: 100%;
    height: auto;
}

/* ===== TABLE RESPONSIVENESS ===== */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

/* ===== FORM ELEMENTS ===== */
input, select, textarea {
    font-size: 16px !important;
    max-width: 100%;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
/* 
Mobile: 0 - 479px
Small Tablet: 480px - 639px
Tablet: 640px - 767px
Large Tablet: 768px - 1023px
Desktop: 1024px+
*/