/* ==========================================
   SAM'S PRINT STUDIO — Global Stylesheet
   ========================================== */

:root {
    --primary: #0f172a;
    --accent: #0ea5e9;
    --accent-hot: #ef4444;
    --accent-green: #10b981;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    --gradient-accent: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ==========================================
   UTILITIES
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hot));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    background: #0284c7;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: #20bd5a;
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.btn-dark {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.4);
    background: #1e293b;
}

/* ==========================================
   HEADER
   ========================================== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    width: 300px;
    height: 200%;
}

.logo img {
    height: 200px;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent);
    padding-left: 28px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* ==========================================
   BREADCRUMBS
   ========================================== */
.breadcrumb {
    padding: 120px 0 0;
    background: var(--bg-light);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    list-style: none;
    padding: 0;
}

.breadcrumb-list a {
    color: var(--accent);
    transition: var(--transition);
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-list li + li::before {
    content: '›';
    margin-right: 8px;
    color: #cbd5e1;
}

/* ==========================================
   PAGE HERO (Service Pages)
   ========================================== */
.page-hero {
    padding: 30px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.page-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.page-hero-text {
    flex: 1;
}

.page-hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 550px;
}

.page-hero-text .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.page-hero-text .hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.page-hero-text .hero-feature i {
    color: var(--accent-green);
}

.page-hero-image {
    flex: 0 0 420px;
}

.page-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

/* ==========================================
   SERVICE DETAIL SECTIONS
   ========================================== */
.service-detail {
    background: var(--bg-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.detail-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--accent);
    background: white;
}

.detail-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.detail-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.detail-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================
   PROCESS / STEPS
   ========================================== */
.process-section {
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
}

.process-step h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

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

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
    gap: 15px;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==========================================
   PRICING TABLES
   ========================================== */
.pricing-section {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow);
    border-color: var(--accent);
}

.pricing-card.featured {
    border-color: var(--accent);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-hot);
    color: white;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card-header {
    padding: 30px;
    text-align: center;
    background: var(--bg-light);
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card-header i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.pricing-card-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-card-header .price {
    font-size: 0.95rem;
    color: var(--text-light);
}

.pricing-card-header .price strong {
    font-size: 1.6rem;
    color: var(--accent);
}

.pricing-card-body {
    padding: 30px;
}

.pricing-card-body .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.pricing-card-body .price-row:last-child {
    border-bottom: none;
}

.pricing-card-body .price-row .item-name {
    color: var(--text-dark);
}

.pricing-card-body .price-row .item-price {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.pricing-card-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==========================================
   BUNDLES / OFFERS
   ========================================== */
.bundles-section {
    background: var(--primary);
    color: white;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.bundle-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}

.bundle-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.bundle-card .bundle-emoji {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.bundle-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.bundle-card .bundle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.bundle-card ul {
    list-style: none;
    padding: 0;
}

.bundle-card ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bundle-card ul li i {
    color: var(--accent-green);
    font-size: 0.8rem;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #0284c7 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-banner .btn-white {
    background: white;
    color: var(--accent);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.cta-banner .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   CROSS-SELL / OTHER SERVICES
   ========================================== */
.other-services {
    background: var(--bg-light);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.other-service-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.other-service-link:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
}

.other-service-link i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.other-service-link span {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: var(--primary);
    color: #94a3b8;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-brand h2 { color: white; margin-bottom: 10px; }
.footer-links h3 { color: white; margin-bottom: 20px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a:hover { color: var(--accent); }

.footer-logo {
    height: 200px;
    width: auto;
    display: block;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
}

/* ==========================================
   FLOATING WIDGET
   ========================================== */
.floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.floating-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.floating-btn.whatsapp:hover { background: linear-gradient(135deg, #20bd5a, #0d7a6d); }
.floating-btn.call { background: linear-gradient(135deg, var(--accent), #0284c7); }
.floating-btn.call:hover { background: linear-gradient(135deg, #0284c7, #0369a1); }

.floating-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.floating-btn .tooltip {
    position: absolute;
    right: 75px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn .tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: var(--primary);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* ==========================================
   REVEAL ANIMATION
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   HERO (Homepage)
   ========================================== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text { flex: 1; max-width: 600px; }

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.info-strip {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
}

.info-item i { color: var(--accent-hot); }

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

/* ==========================================
   FEATURES (Why Choose Us)
   ========================================== */
.features { background: var(--bg-white); }

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    border-radius: 16px;
    background: var(--bg-light);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    background: white;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-item h3 { margin-bottom: 10px; color: var(--primary); }
.feature-item p { font-size: 0.9rem; color: var(--text-light); }

/* ==========================================
   SERVICES GRID (Homepage)
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.service-icon-box {
    height: 200px;
    background: #f1f5f9;
    overflow: hidden;
    position: relative;
}

.service-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon-box img {
    transform: scale(1.1);
}

.service-content { padding: 30px; flex-grow: 1; }
.service-content h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); }
.service-content p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }

.service-list { padding: 0; margin: 15px 0; list-style: none; }

.service-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-list li i { color: var(--accent); margin-top: 4px; font-size: 0.8rem; }

.service-benefit {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-hot);
    background: rgba(239, 68, 68, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: inline-block;
    border-left: 3px solid var(--accent-hot);
}

.service-target {
    font-size: 0.75rem;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 20px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

/* ==========================================
   STRATEGY BANNER
   ========================================== */
.strategy-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    color: white;
    border-radius: 24px;
    padding: 50px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.strategy-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(14, 165, 233, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.strategy-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-5px); }
.strategy-card i { font-size: 1.5rem; color: var(--accent); margin-bottom: 15px; display: block; }
.strategy-card h4 { font-size: 1.25rem; margin-bottom: 10px; color: white; }
.strategy-card p { font-size: 0.95rem; color: #94a3b8; }

/* ==========================================
   DESIGN SUPPORT
   ========================================== */
.design-support { background: var(--primary); color: white; position: relative; overflow: hidden; }
.design-wrapper { display: flex; align-items: center; gap: 50px; position: relative; z-index: 1; }
.design-text { flex: 1; }
.design-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.design-bullets { margin: 30px 0; }
.design-bullets li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-size: 1.1rem; }
.design-bullets i { color: var(--accent); font-size: 1.2rem; }

.design-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 4px solid var(--accent);
}

.design-visual { flex: 1; text-align: center; }
.design-visual i { font-size: 12rem; color: rgba(255, 255, 255, 0.05); }

/* ==========================================
   STEPS
   ========================================== */
.steps { background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.step-item { flex: 1; text-align: center; position: relative; z-index: 1; min-width: 220px; }

.step-num {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
}

.step-item h4 { margin-bottom: 10px; color: var(--primary); }
.step-item p { font-size: 0.9rem; color: var(--text-light); }

/* ==========================================
   ABOUT & TESTIMONIALS
   ========================================== */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.testimonial-box {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.testimonial-box i { font-size: 2rem; color: var(--accent); margin-bottom: 20px; }
.quote-text { font-size: 1.1rem; font-style: italic; margin-bottom: 20px; }
.author { font-weight: 600; color: var(--accent); }

/* ==========================================
   CONTACT
   ========================================== */
.contact { background: #fff; }

.contact-content { display: flex; flex-wrap: wrap; gap: 40px; }
.contact-info { flex: 1; min-width: 300px; }
.info-row { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }

.c-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.c-text h4 { color: var(--primary); margin-bottom: 5px; }
.c-text p { color: var(--text-light); font-size: 0.95rem; }

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background: #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-content { flex-direction: column-reverse; gap: 40px; }
    .hero-image { display: block; margin-bottom: 30px; }
    .hero-img-fluid { width: 100%; }

    nav { height: 70px; }
    .logo { width: auto; }
    .logo img { height: 80px; position: relative; top: 0; }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
    .design-wrapper { flex-direction: column; }
    .about-wrap { grid-template-columns: 1fr; }
    .steps-container { flex-direction: column; gap: 40px; }
    .step-item::after { display: none; }
    .page-hero-content { flex-direction: column-reverse; gap: 30px; }
    .page-hero-image { flex: 0 0 auto; width: 100%; }
    .page-hero-text h1 { font-size: 2.2rem; }
    .section-title h2 { font-size: 2rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .bundles-grid { grid-template-columns: 1fr; }

    .floating-widget { bottom: 20px; right: 20px; }
    .floating-btn { width: 55px; height: 55px; font-size: 1.3rem; }
    .floating-btn .tooltip { display: none; }

    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--bg-light);
        border-radius: 8px;
        margin-top: 10px;
    }
}
