/* DPZ Software Solutions - Main Stylesheet */
:root {
    --primary: #0F172A;
    --secondary: #2563EB;
    --accent: #38BDF8;
    --background: #F8FAFC;
    --text: #1E293B;
    --muted: #64748B;
    --white: #FFFFFF;
    --success: #10B981;
    --error: #EF4444;
    --border: #E2E8F0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--secondary);
    border-radius: 8px;
    color: var(--white);
}

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

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary);
    border-radius: 999px;
    transform: translateX(-50%);
    transition: width 0.25s ease, background-color 0.25s ease;
}

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

@media (max-width: 768px) {
    .nav-link::after {
        bottom: -6px;
        width: 0;
    }

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

.nav-cta {
    padding: 8px 20px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.hero {
    background: linear-gradient(135deg, var(--background) 0%, var(--white) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.hero-glow {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse at center, var(--secondary) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.hero-badge i {
    color: var(--accent);
    font-size: 10px;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.helper-text {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
}

.helper-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.helper-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--secondary);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
}

.hero-image {
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.stats-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* Enhanced Card Styles */
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--background) 0%, var(--white) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--secondary);
    font-size: 28px;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFF6FF;
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 20px;
}

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

.service-card-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.service-link:hover {
    color: #1D4ED8;
}

.service-features {
    margin: 16px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}

.service-features li:last-child {
    border-bottom: none;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.project-thumb {
    height: 200px;
    background: linear-gradient(135deg, #EFF6FF, #F8FAFC);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-thumb i {
    font-size: 48px;
    color: var(--secondary);
    opacity: 0.8;
}

.project-content {
    padding: 24px;
}

.project-badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #EFF6FF;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.project-tags span {
    font-size: 12px;
    padding: 5px 9px;
    background: #F1F5F9;
    border-radius: 999px;
    color: #475569;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    border-radius: 16px;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.contact-info {
    background: var(--background);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    color: var(--white);
}

.footer-logo .logo-icon {
    background: var(--secondary);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease;
    }
    
    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-thumb {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 28px 20px;
    }
}

/* Why Choose Us Section */
.why-section {
    padding: 90px 0;
    background: #ffffff;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-header {
    text-align: center;
    margin-bottom: 48px;
}

.why-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.why-header p {
    color: #64748b;
    font-size: 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.why-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-section {
        padding: 64px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 24px;
    }

    .why-header h2 {
        font-size: 32px;
    }
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--background) 0%, #EFF6FF 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 18px;
    color: var(--muted);
}

.about-section {
    padding: 80px 24px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.about-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.intro-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #EFF6FF;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.service-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #EFF6FF;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 60px 24px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .mission-vision-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 24px;
    }

    .about-section {
        padding: 64px 24px;
    }
}
/* Admin Panel */
.admin-body {
    background: #f8fafc;
    min-height: 100vh;
}

.admin-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.admin-nav a:not(.btn) {
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.admin-nav a:not(.btn):hover,
.admin-nav a.active {
    color: var(--secondary);
    background: #eff6ff;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
    width: auto;
}

.admin-main {
    padding: 48px 0 90px;
}

.admin-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
}

.admin-page-head h1 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--primary);
    margin: 4px 0 8px;
}

.admin-page-head p {
    color: var(--muted);
    max-width: 760px;
}

.admin-kicker {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    font-size: 12px;
}

.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 24px;
}

.admin-card-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.admin-card-head h2 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 6px;
}

.admin-card-head p,
.admin-card small,
.form-group small {
    color: var(--muted);
    font-size: 12px;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.admin-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.admin-grid-full {
    grid-column: 1 / -1;
}

.seo-pages {
    display: grid;
    gap: 18px;
}

.seo-page-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.seo-page-card summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.seo-page-card summary::-webkit-details-marker {
    display: none;
}

.seo-page-card summary span {
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-page-card summary i {
    color: var(--secondary);
}

.seo-page-body {
    padding: 22px;
    border-top: 1px solid var(--border);
}

.seo-preview-box {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 22px;
}

.seo-preview-label {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.seo-preview-title {
    color: #1a0dab;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.seo-preview-url {
    color: #188038;
    font-size: 13px;
    margin-bottom: 6px;
    word-break: break-all;
}

.seo-preview-desc {
    color: #4d5156;
    font-size: 13px;
    line-height: 1.5;
}

.admin-sticky-save {
    position: sticky;
    bottom: 18px;
    z-index: 20;
    background: rgba(15, 23, 42, 0.96);
    color: #ffffff;
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.admin-sticky-save span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    margin-top: 2px;
}

.admin-login-body {
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 35%), #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-login-card {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.admin-login-brand {
    text-align: center;
    margin-bottom: 26px;
}

.admin-login-brand .logo-icon {
    margin: 0 auto 16px;
    width: 52px;
    height: 52px;
    font-size: 22px;
}

.admin-login-brand h1 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 6px;
}

.admin-login-brand p {
    color: var(--muted);
}

.admin-login-btn {
    width: 100%;
}

.admin-login-footer {
    text-align: center;
    margin-top: 20px;
}

.admin-login-footer a {
    color: var(--secondary);
    font-weight: 600;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.admin-stat {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.2s ease;
}

.admin-stat:hover,
.admin-stat.active {
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.admin-stat strong {
    display: block;
    color: var(--primary);
    font-size: 28px;
    line-height: 1;
    margin-bottom: 6px;
}

.admin-stat span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.admin-toolbar {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th {
    text-align: left;
    color: var(--muted);
    background: #f8fafc;
    padding: 14px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table td {
    padding: 16px;
    border-top: 1px solid var(--border);
    vertical-align: top;
}

.admin-table small {
    color: var(--muted);
}

.admin-message-cell {
    max-width: 300px;
    color: var(--muted);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.status-new {
    background: #fef3c7;
    color: #92400e;
}

.status-read {
    background: #dbeafe;
    color: #1e40af;
}

.status-replied {
    background: #d1fae5;
    color: #065f46;
}

.table-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background: #eff6ff;
    border-color: var(--secondary);
}

.icon-btn.success {
    color: var(--success);
}

.icon-btn.danger {
    color: var(--error);
}

.admin-empty {
    text-align: center;
    padding: 52px 20px;
    color: var(--muted);
}

.admin-empty i {
    font-size: 38px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.admin-empty h3 {
    color: var(--primary);
    margin-bottom: 6px;
}

@media (max-width: 900px) {
    .admin-header-content,
    .admin-page-head,
    .admin-sticky-save {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-nav,
    .admin-actions {
        justify-content: flex-start;
    }

    .admin-grid-2,
    .admin-grid-4,
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-toolbar {
        flex-direction: column;
    }
}

/* Production polish and responsive fixes */
.page-hero {
    padding: 88px 0 76px;
    background: radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.16), transparent 32%), linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-hero.compact { padding: 72px 0; }
.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary);
    margin: 12px auto 18px;
    max-width: 860px;
}
.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.08rem;
}
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}
.section-kicker::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}
.hero-buttons.center { justify-content: center; margin-top: 28px; }
.services-grid,
.projects-grid,
.why-grid,
.values-grid,
.process-grid,
.testimonial-grid,
.capability-grid {
    width: 100%;
}
.project-thumb::before {
    content: '';
    position: absolute;
    inset: 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.10));
    border: 1px solid rgba(37, 99, 235, 0.08);
}
.project-thumb i { position: relative; z-index: 1; }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.process-card,
.testimonial-card,
.contact-info-card,
.contact-form-card,
.about-visual-card,
.content-page {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.process-card {
    padding: 28px;
    transition: all .25s ease;
}
.process-card:hover,
.testimonial-card:hover,
.value-card:hover,
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--secondary);
    background: #eff6ff;
    font-weight: 800;
    margin-bottom: 18px;
}
.process-card h3 { color: var(--primary); margin-bottom: 8px; }
.process-card p { color: var(--muted); font-size: 15px; }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 30px;
}
.testimonial-card p {
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.testimonial-card strong { display:block; color: var(--primary); }
.testimonial-card span { color: var(--muted); font-size: 14px; }
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq-list details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
}
.faq-list p { color: var(--muted); margin-top: 12px; }
.lead-text {
    font-size: 1.12rem;
    color: var(--primary);
    font-weight: 500;
    line-height: 1.8;
}
.intro-grid h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 20px;
}
.intro-grid p { color: var(--muted); margin-bottom: 16px; }
.about-visual-card { padding: 34px; }
.mini-dashboard {
    border: 1px solid #dbeafe;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
}
.mini-dashboard-top {
    background: var(--secondary);
    padding: 14px;
    display:flex;
    gap:8px;
}
.mini-dashboard-top span { width:10px;height:10px;border-radius:50%;background:#bfdbfe; }
.mini-dashboard-body { display:grid; grid-template-columns: 90px 1fr; min-height: 230px; }
.mini-sidebar { background:#f8fafc; border-right:1px solid var(--border); }
.mini-content { padding:22px; display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.mini-content div { border-radius:14px; background:linear-gradient(135deg,#eff6ff,#f8fafc); border:1px solid #dbeafe; }
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #eff6ff;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
}
.capability-grid {
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:16px;
}
.capability-grid span {
    display:flex;
    gap:10px;
    align-items:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:18px;
    font-weight:700;
    color:var(--primary);
    box-shadow:0 8px 22px rgba(15,23,42,.05);
}
.capability-grid i { color:var(--secondary); }
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: 34px;
    align-items: start;
}
.contact-info-card,
.contact-form-card { padding: 34px; }
.contact-info-card h2,
.contact-form-card h2 { color: var(--primary); margin-bottom: 10px; }
.contact-info-card > p,
.contact-form-card > p { color: var(--muted); margin-bottom: 24px; }
.mini-cta-box {
    margin-top: 28px;
    padding: 20px;
    border-radius: 16px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
}
.mini-cta-box p { margin: 8px 0 0; color: var(--muted); }
.hp-field { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.content-page { max-width: 900px; padding: 42px; }
.content-page h2 { color:var(--primary); margin: 26px 0 10px; }
.content-page h2:first-child { margin-top:0; }
.content-page p { color:var(--muted); line-height:1.8; }
.admin-checklist { display:grid; gap:12px; }
.admin-checklist li { display:flex; align-items:center; gap:10px; color:var(--text); }
.admin-checklist i { color:var(--success); }
.admin-actions.stack { display:grid; gap:12px; }
.status-select { border:1px solid var(--border); border-radius:8px; padding:7px 8px; background:#fff; color:var(--text); }
.pagination { display:flex; justify-content:center; gap:8px; margin-top:24px; flex-wrap:wrap; }
.page-link { padding:8px 12px; border:1px solid var(--border); border-radius:10px; color:var(--text); }
.page-link.active,.page-link:hover { background:var(--secondary); color:#fff; border-color:var(--secondary); }
.status-closed { background:#f1f5f9; color:#475569; }
.admin-switch-row { display:grid; gap:12px; margin-top:20px; }
.admin-switch-row label { display:flex; align-items:center; gap:10px; font-weight:600; color:var(--text); }
@media (max-width: 992px) {
    .process-grid,
    .testimonial-grid,
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .page-hero { padding: 64px 0 56px; }
    .process-grid,
    .testimonial-grid,
    .capability-grid { grid-template-columns: 1fr; }
    .contact-info-card,
    .contact-form-card,
    .content-page { padding: 24px; }
    .mini-dashboard-body { grid-template-columns: 1fr; }
    .mini-sidebar { display:none; }
}

/* Portfolio manager and project card polish */
.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    margin-top: 18px;
}
.project-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.project-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.project-content p {
    color: var(--muted);
    line-height: 1.65;
}
.project-tags {
    margin-bottom: 0;
}
.project-content .btn-small {
    align-self: flex-start;
    margin-top: auto;
}
.admin-actions.compact {
    gap: 8px;
    flex-wrap: nowrap;
}
.admin-actions.compact .btn,
.admin-actions.compact button {
    white-space: nowrap;
}
@media (min-width: 1100px) {
    .admin-stats-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* v2.5 Business CMS Additions */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    transition: all .25s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(15,23,42,.12); }
.pricing-card.highlighted { border-color: var(--secondary); box-shadow: 0 18px 44px rgba(37,99,235,.15); }
.pricing-badge { position:absolute; top:18px; right:18px; background:#dbeafe; color:var(--secondary); border-radius:999px; padding:6px 10px; font-size:12px; font-weight:800; }
.pricing-card h3 { color:var(--primary); font-size: 22px; margin-bottom: 12px; padding-right: 60px; }
.pricing-price { color:var(--secondary); font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.pricing-card p { color:var(--muted); margin-bottom: 22px; }
.pricing-features { display:grid; gap:10px; margin-bottom: 24px; }
.pricing-features li { display:flex; gap:10px; color:var(--text); }
.pricing-features i, .feature-check-list i, .rating-stars { color:var(--secondary); }
.pricing-card .btn { margin-top:auto; }
.feature-check-list { display:grid; gap:12px; margin-top:16px; }
.feature-check-list li { display:flex; gap:10px; color:var(--text); }
.case-study-layout { display:grid; grid-template-columns: 1.35fr .75fr; gap:34px; align-items:start; }
.project-thumb.small { height:130px; border-radius:18px; margin-bottom:22px; }
.rating-stars { font-size:18px; letter-spacing:2px; margin-bottom:14px; }
.admin-nav { flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.admin-nav a:not(.btn) { padding: 7px 9px; font-size: 13px; }
.admin-main .container { max-width: 1440px; }
.inline-edit-form { display:grid; gap:8px; min-width: 190px; }
.lead-board { display:grid; grid-template-columns: repeat(7, minmax(230px, 1fr)); gap:16px; overflow-x:auto; padding-bottom:18px; }
.lead-column { background:#f8fafc; border:1px solid var(--border); border-radius:18px; padding:16px; min-height:260px; }
.lead-column h2 { display:flex; justify-content:space-between; align-items:center; color:var(--primary); font-size:16px; margin-bottom:14px; }
.lead-column h2 span { background:#e0f2fe; color:var(--secondary); border-radius:999px; padding:4px 9px; font-size:12px; }
.lead-card { background:#fff; border:1px solid var(--border); border-radius:16px; padding:16px; box-shadow:0 8px 22px rgba(15,23,42,.05); margin-bottom:14px; }
.lead-top { display:flex; justify-content:space-between; gap:8px; align-items:flex-start; margin-bottom:8px; }
.lead-card p { color:var(--primary); font-weight:700; margin-bottom:6px; }
.lead-card small { color:var(--muted); }
.lead-update { display:grid; gap:8px; margin-top:12px; }
.admin-empty.mini { padding:12px; text-align:center; border-radius:12px; background:#fff; }
.media-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:20px; }
.media-card { background:#fff; border:1px solid var(--border); border-radius:18px; overflow:hidden; box-shadow:0 8px 24px rgba(15,23,42,.06); }
.media-card img { width:100%; height:160px; object-fit:cover; background:#f8fafc; display:block; }
.media-file-icon { height:160px; display:flex; align-items:center; justify-content:center; background:#eff6ff; color:var(--secondary); font-size:46px; }
.media-card-body { padding:16px; display:grid; gap:10px; }
.media-card-body strong { word-break:break-word; color:var(--primary); }
.media-card-body small { color:var(--muted); word-break:break-all; }
.status-reviewing,.status-quoted,.status-sent,.status-approved,.status-won { background:#d1fae5; color:#065f46; }
.status-follow_up,.status-needs_proposal,.status-proposal_sent,.status-warning,.status-urgent,.status-high { background:#fef3c7; color:#92400e; }
.status-lost,.status-declined,.status-error { background:#fee2e2; color:#991b1b; }
.status-draft,.status-notice,.status-low,.status-normal { background:#e0f2fe; color:#075985; }
.compact-list { margin-top:18px; margin-bottom:18px; }
@media (max-width: 1200px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } .media-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 992px) { .case-study-layout { grid-template-columns: 1fr; } .admin-header-content { align-items:flex-start; } .lead-board { grid-template-columns: repeat(3, minmax(240px, 1fr)); } }
@media (max-width: 700px) { .pricing-grid, .media-grid { grid-template-columns: 1fr; } .lead-board { grid-template-columns: 1fr; overflow-x: visible; } .admin-nav { justify-content:flex-start; } }
.article-content p { margin-bottom: 18px; color: var(--text); }

/* DPZ Website v2.5.8 - Editable footer branding themes */
.footer.footer-theme-gradient{
  background:linear-gradient(135deg,#0f172a 0%,#1d4ed8 72%,#38bdf8 100%);
}
.footer.footer-theme-light{
  background:#f8fafc;
  color:#0f172a;
  border-top:1px solid #e2e8f0;
}
.footer.footer-theme-light .logo,
.footer.footer-theme-light .footer-links h4,
.footer.footer-theme-light .footer-contact h4{
  color:#0f172a;
}
.footer.footer-theme-light p,
.footer.footer-theme-light .footer-links a,
.footer.footer-theme-light .footer-contact ul li,
.footer.footer-theme-light .footer-bottom{
  color:#64748b;
}
.footer.footer-theme-light .footer-links a:hover,
.footer.footer-theme-light .footer-bottom a:hover{
  color:#2563eb;
}
.footer.footer-theme-light .social-links a{
  background:#eff6ff;
  color:#2563eb;
}
.footer.footer-theme-light .social-links a:hover{
  background:#2563eb;
  color:#fff;
}
.footer.footer-theme-light .footer-bottom{
  border-top:1px solid #e2e8f0;
}
.footer-bottom a{
  color:inherit;
  text-decoration:none;
  transition:color .2s ease;
}
.footer-bottom a:hover{
  color:#fff;
}
.footer-note{
  margin-top:.45rem!important;
  font-size:.83rem;
  opacity:.86;
}
.footer-contact a{
  color:inherit;
}


/* DPZ Website v2.6.1 - Footer Contact Info Alignment Hotfix */
.footer-contact {
  min-width: 0;
}

.footer-contact h4 {
  margin-bottom: 22px;
}

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

.footer-contact ul li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.footer-contact ul li i {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
  margin-top: 1px;
}

.footer-contact ul li a,
.footer-contact ul li span {
  display: block;
  min-width: 0;
  color: inherit;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: normal;
}

.footer-contact ul li a:hover {
  color: #ffffff;
}

.footer.footer-theme-light .footer-contact ul li {
  color: #64748b;
}

.footer.footer-theme-light .footer-contact ul li i {
  color: #2563eb;
}

.footer.footer-theme-light .footer-contact ul li a:hover {
  color: #2563eb;
}

@media (max-width: 992px) {
  .footer-contact ul li {
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 10px;
  }

  .footer-contact ul li i {
    width: 22px;
    min-width: 22px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    row-gap: 34px;
  }

  .footer-contact h4,
  .footer-links h4 {
    margin-bottom: 16px;
  }

  .footer-contact ul li {
    margin-bottom: 14px;
  }
}

/* v2.6.2 Mobile Responsive Repair
   Fixes very small screens (320px-390px), logo wrapping, badge layout, nav dropdown,
   hero readability, and nested clean-URL asset paths. */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.header,
.header * {
    -webkit-tap-highlight-color: transparent;
}

.logo span {
    line-height: 1.2;
}

.hero-badge span,
.helper-item {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .header-content {
        padding: 12px 0;
        gap: 12px;
    }

    .logo {
        min-width: 0;
        max-width: calc(100% - 56px);
        gap: 10px;
        font-size: 18px;
        letter-spacing: -0.02em;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        flex: 0 0 36px;
    }

    .logo span {
        display: block;
        min-width: 0;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid transparent;
        border-radius: 10px;
        flex: 0 0 42px;
    }

    .mobile-menu-btn:hover,
    .mobile-menu-btn.active {
        background: #eff6ff;
        border-color: #dbeafe;
    }

    .nav {
        top: 61px;
        left: 12px;
        right: 12px;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
        max-height: calc(100vh - 82px);
        overflow-y: auto;
        align-items: stretch;
        z-index: 120;
    }

    .nav-list {
        width: 100%;
        gap: 4px;
        margin-bottom: 12px;
    }

    .nav-list li,
    .nav-link {
        width: 100%;
    }

    .nav-link {
        justify-content: flex-start;
        padding: 11px 12px;
        border-radius: 10px;
        font-size: 15px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: #eff6ff;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        width: 100%;
        padding: 12px 16px;
    }

    .hero {
        padding: 48px 0 34px;
    }

    .hero-content {
        gap: 28px;
    }

    .hero-text h1 {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
        font-size: clamp(1.75rem, 7vw, 2.35rem);
        line-height: 1.18;
        letter-spacing: -0.035em;
    }

    .hero-text p {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
        font-size: 1.02rem;
        line-height: 1.65;
    }

    .helper-items {
        justify-content: center;
        gap: 8px 12px;
        margin-top: 12px;
    }

    .hero-image img {
        max-width: min(100%, 420px);
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-content {
        padding: 10px 0;
    }

    .logo {
        font-size: 17px;
        gap: 9px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 15px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .mobile-menu-btn span {
        width: 22px;
    }

    .nav {
        top: 57px;
    }

    .hero {
        padding: 42px 0 30px;
    }

    .hero-badge {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        max-width: 100%;
        padding: 0;
        margin: 0 auto 18px;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .hero-badge i {
        display: none;
    }

    .hero-badge span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 7px 10px;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: var(--white);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
        font-size: 12px;
        line-height: 1.25;
        color: var(--secondary);
    }

    .hero-text h1 {
        font-size: clamp(1.55rem, 7.2vw, 1.9rem);
        margin-bottom: 16px;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.62;
        margin-bottom: 22px;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 10px;
    }

    .helper-items {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .helper-item {
        font-size: 12.5px;
    }

    .section {
        padding: 52px 0;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 1.65rem;
        line-height: 1.2;
    }

    .section-title p {
        font-size: 0.98rem;
    }

    .service-card,
    .why-card,
    .project-card,
    .testimonial-card,
    .process-card,
    .stat-card,
    .card {
        border-radius: 16px;
    }
}

@media (max-width: 360px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo {
        font-size: 16px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .hero-text h1 {
        font-size: 1.48rem;
    }

    .hero-text p {
        font-size: 0.96rem;
    }
}

