/*
Theme Name: Code Pixels Unlimited
Theme URI: https://codepixels.unlimited
Author: PC Digital Design
Author URI: https://pcdigitaldesign.com/
Description: Premium WordPress theme for web design agency
Version: 1.0.7
License: GPL v2 or later
Text Domain: codepixels

        /* --- CSS VARIABLES & RESET --- */
        :root {
            /* Brand Palette */
            --color-blue-primary: #1D97C9;
            --color-blue-light: #A9CFE4;
            --color-accent-deep: #BC5F00;
            --color-accent-orange: #FCA502;
            --color-accent-yellow: #FDC601;
            
            /* Neutrals */
            --color-bg: #F8FBFD;
            --color-text-dark: #0F172A;
            --color-text-light: #475569;
            --color-white: #FFFFFF;

            /* Spacing & Layout */
            --container-width: 1200px;
            --header-height: 88px;
            --border-radius: 12px;
            
            /* Animation */
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1.1;
            font-weight: 700;
        }

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

        ul {
            list-style: none;
        }

        /* --- UTILITIES --- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

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

        /* --- SECTION CONTRAST --- */
        #about {
            background: #1E293B;
        }
        #about h2, #about .section-title, #about p,
        #about .about-main-text h2, #about .about-body p,
        #about .feature-title, #about .feature-desc {
            color: #ffffff !important;
        }
        #about .text-gradient {
            background: linear-gradient(135deg, #7DD3FC, #38BDF8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        #about .feature-icon-wrap {
            background: rgba(255,255,255,0.1) !important;
        }
        #benefits {
            background: linear-gradient(180deg, #F0F9FF 0%, #E6F4FA 100%);
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: var(--transition-smooth);
            cursor: pointer;
            border: none;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep)); /* Peacock gradient */
            color: var(--color-white);
            box-shadow: 0 10px 20px -5px rgba(29, 151, 201, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px -5px rgba(29, 151, 201, 0.6);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, var(--color-accent-orange), var(--color-accent-yellow));
            opacity: 0;
            transition: var(--transition-smooth);
            z-index: 1;
        }
        
        .btn-primary span {
            position: relative;
            z-index: 2;
        }

        .btn-primary:hover::after {
            opacity: 0; /* Gradient shift handled by base transform */
            background: var(--color-accent-deep);
        }

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

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

        /* --- NAVIGATION --- */
        .navbar {
            height: var(--header-height);
            display: flex;
            align-items: center;
            position: relative;
            top: auto;
            left: auto;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(169, 207, 228, 0.3);
            transition: var(--transition-smooth);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        
        /* Make header content full-width (client request) */
        .navbar .container {
            max-width: 100%;
            padding-left: 40px;
            padding-right: 40px;
        }
        @media (max-width: 768px) {
            .navbar .container {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

.logo-wrapper {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex: 0 0 auto;
        }

        .custom-logo-link img,
        .header-logo {
            height: 62px;
            width: auto;
            display: block;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--color-text-dark);
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--color-blue-primary);
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 2px;
            border-radius: 4px;
        }

        .logo-icon div {
            background: white;
            opacity: 0.8;
        }
        .logo-icon div:nth-child(2) { background: var(--color-accent-yellow); }
        .logo-icon div:nth-child(3) { background: var(--color-accent-orange); }

        .nav-menu {
            display: flex;
            gap: 40px;
            align-items: center;
            justify-content: center;
            flex: 1 1 auto;
        }

        .nav-link {
            font-size: 1.05rem;
            font-weight: 600;
            position: relative;
            color: var(--color-text-light);
        }

        .header-contact-btn {
            flex: 0 0 auto;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--color-accent-orange);
            transition: var(--transition-smooth);
        }

        .nav-link:hover {
            color: var(--color-blue-primary);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* --- HERO SECTION --- */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        #canvas-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-content {
            position: relative;
            max-width: 700px;
            z-index: 10;
        }

        .hero-tag {
            display: inline-block;
            background: var(--color-blue-light);
            color: var(--color-blue-primary);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-title {
            font-size: 4rem;
            margin-bottom: 24px;
            color: var(--color-text-dark);
        }

        .hero-desc {
            font-size: 1.25rem;
            color: var(--color-text-light);
            margin-bottom: 40px;
            max-width: 550px;
        }

        /* --- ABOUT / VALUE PROP --- */
        .value-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .value-text h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
        }

        .value-card {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            position: relative;
            border: 1px solid rgba(169, 207, 228, 0.4);
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            background: linear-gradient(45deg, var(--color-blue-primary), var(--color-accent-orange));
            z-index: -1;
            border-radius: 26px;
            opacity: 0.5;
            filter: blur(10px);
        }

        /* --- SERVICE SECTION --- */
        #service {
            background: linear-gradient(180deg, #E6F4FA 0%, #F0F9FF 100%);
            text-align: center;
        }

        .service-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 30px 60px -10px rgba(29, 151, 201, 0.15);
            margin-top: 50px;
            transition: var(--transition-smooth);
            display: grid;
            grid-template-columns: 1.5fr 1fr;
        }

        .service-info {
            padding: 60px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-visual {
            background: var(--color-blue-primary);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-btn-wrap {
            margin-top: 40px;
            text-align: center;
        }

        /* Glowing Owner Message Box (replaces pixel squares) */
/* ── Modern Glowing Owner Message Box ── */
.glow-owner-box {
    width: min(520px, 90%);
    padding: 34px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 20px 48px rgba(13, 27, 42, 0.10);
    position: relative;
    text-align: center;
    z-index: 1;
    overflow: visible;
    animation: ownerFloat 6s ease-in-out infinite;
}

/* Aurora glow layer behind the card */
.glow-owner-box::before {
    content: '';
    position: absolute;
    inset: -36px;
    border-radius: 34px;
    z-index: -1;
    background: conic-gradient(
        from var(--aurora-angle, 0deg) at 50% 50%,
        rgba(56,  189, 248, 0.60)   0deg,
        rgba(99,  102, 241, 0.55)  72deg,
        rgba(249, 115,  22, 0.50) 144deg,
        rgba(56,  189, 248, 0.55) 216deg,
        rgba(99,  102, 241, 0.50) 288deg,
        rgba(56,  189, 248, 0.60) 360deg
    );
    filter: blur(28px);
    animation: auroraRotate 8s linear infinite, auroraBreath 4s ease-in-out infinite;
}

/* Animated gradient border ring */
.glow-owner-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(56,  189, 248, 0.90),
        rgba(99,  102, 241, 0.75),
        rgba(249, 115,  22, 0.80),
        rgba(56,  189, 248, 0.90)
    );
    background-size: 300% 300%;
    animation: borderShift 5s ease infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

@keyframes ownerFloat {
    0%   { transform: translateY(0px);  box-shadow: 0 20px 48px rgba(13,27,42,0.10); }
    50%  { transform: translateY(-7px); box-shadow: 0 30px 60px rgba(13,27,42,0.16); }
    100% { transform: translateY(0px);  box-shadow: 0 20px 48px rgba(13,27,42,0.10); }
}

@keyframes auroraRotate {
    from { transform: rotate(0deg);   }
    to   { transform: rotate(360deg); }
}

@keyframes auroraBreath {
    0%   { opacity: 0.15; filter: blur(24px); }
    30%  { opacity: 0.75; filter: blur(28px); }
    60%  { opacity: 0.90; filter: blur(32px); }
    100% { opacity: 0.15; filter: blur(24px); }
}

@keyframes borderShift {
    0%   { background-position:   0% 50%; opacity: 0.55; }
    50%  { background-position: 100% 50%; opacity: 0.90; }
    100% { background-position:   0% 50%; opacity: 0.55; }
}

@keyframes glowPulse {
    0%   { opacity: 0.40; }
    50%  { opacity: 0.95; }
    100% { opacity: 0.50; }
}

.glow-owner-title {
            margin: 0 0 14px;
            text-align: center;
            font-weight: 900;
            font-size: 1.35rem;
            color: var(--color-navy);
        }

        .glow-owner-body {
            color: rgba(13, 27, 42, 0.78);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .glow-owner-body p {
            margin: 0 0 12px;
        }

        .glow-owner-body strong {
            color: var(--color-navy);
        }

        .glow-owner-signature {
            margin-top: 14px;
            font-weight: 800;
            color: var(--color-navy);
        }

        /* Abstract Pixel Art in CSS */
        .pixel-art {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            transform: rotate(-15deg) scale(1.2);
        }
        .px {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 4px;
            animation: pulse 3s infinite alternate;
        }
        .px:nth-child(2n) { background: var(--color-accent-yellow); opacity: 0.8; }
        .px:nth-child(3n) { background: var(--color-accent-orange); opacity: 0.8; }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.1); opacity: 1; }
        }

        .feature-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
            color: var(--color-text-light);
        }

        /* --- SERVICES PORTRAIT CARDS --- */
        .service-portrait-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-top: 10px;
        }

        .service-portrait-card {
            border-radius: 16px;
            padding: 18px 18px 16px;
            border: 1px solid rgba(169, 207, 228, 0.35);
            background: rgba(248, 251, 253, 0.7);
            position: relative;
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .service-portrait-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 35px rgba(0,0,0,0.06);
            border-color: rgba(29, 151, 201, 0.35);
        }

        .service-portrait-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 6px;
            height: 100%;
            background: var(--color-blue-primary);
        }

        .service-portrait-card.accent-yellow::before { background: var(--color-accent-yellow); }
        .service-portrait-card.accent-orange::before { background: var(--color-accent-orange); }

        .service-portrait-title {
            font-weight: 800;
            font-size: 1.05rem;
            margin-bottom: 8px;
            color: var(--color-text-dark);
        }

        .service-portrait-desc {
            color: var(--color-text-light);
            font-size: 0.95rem;
            line-height: 1.55;
        }

        .service-note {
            margin-top: 18px;
            padding: 14px 16px;
            border-radius: 14px;
            background: rgba(169, 207, 228, 0.18);
            border: 1px solid rgba(169, 207, 228, 0.35);
            color: var(--color-text-light);
            font-size: 0.95rem;
        }

        .check-icon {
            color: var(--color-accent-deep);
            font-weight: bold;
        }

        /* --- WHY US --- */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .why-card {
            padding: 30px;
            background: white;
            border-radius: 16px;
            border: 1px solid #eee;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .why-card:hover {
            transform: translateY(-10px);
            border-color: var(--color-blue-light);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .icon-box {
            position: absolute;
            right: 18px;
            top: 18px;
            width: auto;
            height: auto;
            background: transparent;
            color: var(--color-blue-primary);
            display: block;
            border-radius: 0;
            font-size: 6rem;
            line-height: 1;
            opacity: 0.08;
            pointer-events: none;
        }

        .why-card h3 {
            text-align: center;
        }

        /* --- OWNER MESSAGE --- */
        .owner-message-wrap {
            background: white;
            border: 1px solid rgba(169, 207, 228, 0.35);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.04);
        }

        
        /* Owner message layout tweaks (client request) */
        #owner-message .container {
            max-width: 1400px;
        }
        .owner-message-wrap {
            width: 100%;
        }
        .owner-message-body {
            margin-top: 18px;
        }

.owner-message-title {
            text-align: center;
            color: var(--color-blue-primary);
            margin-bottom: 18px;
            font-size: 2.2rem;
        }

        .owner-message-body p {
            color: var(--color-text-light);
            font-size: 1.05rem;
            margin-bottom: 16px;
            line-height: 1.7;
            text-align: left;
        }

        .owner-signature {
            margin-top: 10px;
            font-weight: 800;
            color: var(--color-text-dark);
        }

        /* --- PROCESS DROPDOWN BOXES --- */
        .process-accordion {
            max-width: 920px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 18px;
            text-align: left;
        }

        .process-accordion details {
            background: white;
            border-radius: 18px;
            border: 1px solid rgba(169, 207, 228, 0.35);
            box-shadow: 0 18px 40px rgba(0,0,0,0.04);
            overflow: hidden;
        }

        .process-accordion summary {
            list-style: none;
            cursor: pointer;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--color-blue-primary);
        }

        .process-accordion summary::-webkit-details-marker {
            display: none;
        }

        .process-accordion summary::after {
            content: '+';
            margin-left: auto;
            font-size: 1.4rem;
            color: var(--color-accent-orange);
        }

        .process-accordion details[open] summary::after {
            content: '–';
        }

        .process-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 2px solid var(--color-blue-primary);
            color: var(--color-blue-primary);
            font-weight: 900;
            flex: 0 0 auto;
        }

        .process-accordion-body {
            padding: 0 22px 18px;
            color: var(--color-text-light);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        

        /* --- SMOOTH ACCORDION TRANSITIONS --- */
        .features-accordion-body,
        .process-accordion-body{
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height 360ms ease, opacity 260ms ease, padding 360ms ease;
        }
        details[open] > .features-accordion-body,
        details[open] > .process-accordion-body{
            opacity: 1;
        }
    /* --- CONTACT --- */
        #contact {
            text-align: center;
            background-color: #0F172A; /* Dark contrast */
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        #contact h2 { color: white; }
        #contact p { color: #94A3B8; }

        .cta-box {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
        }

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

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

        /* --- RESPONSIVE --- */
        @media (max-width: 968px) {
            .hero-title { font-size: 3rem; }
            .value-grid { grid-template-columns: 1fr; }
            .service-card { grid-template-columns: 1fr; }
            /*
             * Mobile: the owner message box is taller than 200px.
             * A fixed height clips the content and the glow (seen in screenshots).
             */
            .service-info { padding: 40px 26px; }
            .service-visual {
                height: auto;
                min-height: 360px;
                padding: 44px 0 54px;
            }
            
            .nav-menu {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 40px;
                border-bottom: 1px solid #eee;
                transform: translateY(-150%);
                transition: var(--transition-smooth);
                z-index: 900;
            }
            
            .nav-menu.open { transform: translateY(0); }
            .mobile-toggle { display: block; }
        }

        @media (max-width: 480px) {
            .hero-title { font-size: 2.2rem; }
            .btn { width: 100%; text-align: center; }
            .glow-owner-box { animation: none; }
        }

 /* --- CUSTOM LOGO STYLES --- */
.custom-logo {
    height: 80px;
    width: auto;
    max-height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-wrapper .custom-logo-link {
    display: flex;
    align-items: center;
}

/* --- MENU STYLES FOR WORDPRESS MENU --- */
.nav-menu li {
    list-style: none;
}

.nav-menu li.menu-button {
    margin-left: 10px;
}

.nav-menu li.menu-button a.btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Footer Menu */
.footer-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-menu li {
    list-style: none;
}

.footer-menu a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-menu a:hover {
    color: var(--color-blue-primary);
}

/* Social Links */
.social-links a {
    color: var(--color-blue-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.social-links a:hover {
    color: var(--color-accent-orange);
    transform: translateY(-2px);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 40px;
        border-bottom: 1px solid #eee;
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        z-index: 900;
        gap: 20px;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li.menu-button {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .nav-menu.open { transform: translateY(0); }
    
    .custom-logo {
        height: 35px;
    }
}       

/* --- HEADER CONTACT BUTTON (SEPARATE) --- */
.header-contact-btn {
    margin-left: 20px;
}

.header-contact-btn .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile: Hide contact button in menu */
@media (max-width: 968px) {
    .nav-container {
        position: relative;
    }
    
    .header-contact-btn {
        display: none; /* Hide separate button on mobile */
    }
    
    /* Add contact button inside mobile menu */
    .nav-menu::after {
        content: '';
        display: block;
        text-align: center;
        margin-top: 20px;
    }
    
    .nav-menu::after {
        content: 'Contact Us';
        display: block;
        background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        margin: 20px auto;
        width: fit-content;
        cursor: pointer;
    }
}

/* --- LOGO SIZE CONTROL --- */

/* Header Uploaded Logo */
.header-logo, .custom-logo {
    height: 40px; /* Default header logo size */
    width: auto;
    max-height: 40px;
    transition: var(--transition-smooth);
}

/* Header Default Logo (Text + Icon) */
.logo {
    font-size: 1.5rem; /* Default header text size */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.logo-icon {
    width: 32px; /* Default header icon size */
    height: 32px;
    transition: var(--transition-smooth);
}

/* FOOTER LOGO STYLES */
.footer-logo-wrapper {
    text-align: center;
}

/* Footer Uploaded Logo */
.footer-custom-logo {
    height: 50px; /* Default footer logo size - LARGER than header */
    width: auto;
    max-height: 50px;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

/* Footer Default Logo */
.footer-logo {
    font-size: 2.1rem; /* Default footer text size - LARGER than header */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-logo-icon {
    width: 40px; /* Default footer icon size - LARGER than header */
    height: 40px;
    background: var(--color-blue-primary);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    border-radius: 4px;
}

.footer-logo-icon div {
    background: white;
    opacity: 0.8;
}
.footer-logo-icon div:nth-child(2) { background: var(--color-accent-yellow); }
.footer-logo-icon div:nth-child(3) { background: var(--color-accent-orange); }

/* --- LOGO SIZE CONTROL CLASSES --- */

/* SMALL LOGOS */
.header-logo.small-logo,
.custom-logo.small-logo {
    height: 30px;
    max-height: 30px;
}

.logo.small-logo {
    font-size: 1.2rem;
}
.logo.small-logo .logo-icon {
    width: 24px;
    height: 24px;
}

.footer-custom-logo.small-logo {
    height: 35px;
    max-height: 35px;
}

.footer-logo.small-logo {
    font-size: 1.4rem;
}
.footer-logo.small-logo .footer-logo-icon {
    width: 30px;
    height: 30px;
}

/* MEDIUM LOGOS (Default) */
.header-logo.medium-logo,
.custom-logo.medium-logo {
    height: 40px;
    max-height: 40px;
}

.logo.medium-logo {
    font-size: 1.5rem;
}
.logo.medium-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-custom-logo.medium-logo {
    height: 50px;
    max-height: 50px;
}

.footer-logo.medium-logo {
    font-size: 1.8rem;
}
.footer-logo.medium-logo .footer-logo-icon {
    width: 40px;
    height: 40px;
}

/* LARGE LOGOS */
.header-logo.large-logo,
.custom-logo.large-logo {
    height: 50px;
    max-height: 50px;
}

.logo.large-logo {
    font-size: 1.8rem;
}
.logo.large-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-custom-logo.large-logo {
    height: 60px;
    max-height: 60px;
}

.footer-logo.large-logo {
    font-size: 2.2rem;
}
.footer-logo.large-logo .footer-logo-icon {
    width: 50px;
    height: 50px;
}

/* EXTRA LARGE LOGOS */
.header-logo.xlarge-logo,
.custom-logo.xlarge-logo {
    height: 60px;
    max-height: 60px;
}

.logo.xlarge-logo {
    font-size: 2.2rem;
}
.logo.xlarge-logo .logo-icon {
    width: 48px;
    height: 48px;
}

.footer-custom-logo.xlarge-logo {
    height: 70px;
    max-height: 70px;
}

.footer-logo.xlarge-logo {
    font-size: 2.5rem;
}
.footer-logo.xlarge-logo .footer-logo-icon {
    width: 60px;
    height: 60px;
}

/* Logo wrapper for alignment */
.logo-wrapper, .footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-wrapper {
    flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-logo, .custom-logo {
        height: 35px;
        max-height: 35px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .footer-custom-logo {
        height: 45px;
        max-height: 45px;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
    
    .footer-logo-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .header-logo, .custom-logo {
        height: 30px;
        max-height: 30px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .footer-custom-logo {
        height: 40px;
        max-height: 40px;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-logo-icon {
        width: 30px;
        height: 30px;
    }
}

/* --- NEW STYLES FOR UPDATED CONTENT --- */

/* Standout List in About Card */
.standout-list {
    list-style: none;
    padding-left: 0;
}

.standout-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(169, 207, 228, 0.3);
}

.standout-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.standout-list strong {
    color: var(--color-text-dark);
    display: block;
    margin-bottom: 5px;
}

/* Benefits Section */
#benefits {
    background: white;
}

/* Process Timeline */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-blue-primary), var(--color-accent-orange));
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--color-blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-blue-primary);
    z-index: 2;
    flex-shrink: 0;
    margin-right: 30px;
}

.process-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(169, 207, 228, 0.3);
}

.process-content h3 {
    color: var(--color-blue-primary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.process-content p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form-wrapper .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

.contact-form-wrapper .wpcf7-form p:nth-child(3),
.contact-form-wrapper .wpcf7-form p:nth-child(4) {
    grid-column: span 2;
}

.contact-form-wrapper .wpcf7-form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form-wrapper .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--color-accent-orange);
    background: rgba(255,255,255,0.15);
}

.contact-form-wrapper .wpcf7-form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form-wrapper textarea.wpcf7-form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper .wpcf7-submit {
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    justify-self: center;
    grid-column: span 2;
    width: fit-content;
}

.contact-form-wrapper .wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-form-wrapper .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px !important;
    border-radius: 8px;
    grid-column: span 2;
    text-align: center;
}

.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Responsive Process Timeline */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 25px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 20px;
    }
    
    .process-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-number {
        margin: 0 auto 15px;
    }
    
    .contact-form-wrapper .wpcf7-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-wrapper .wpcf7-form p:nth-child(3),
    .contact-form-wrapper .wpcf7-form p:nth-child(4) {
        grid-column: span 1;
    }
    
    .contact-form-wrapper .wpcf7-submit {
        grid-column: span 1;
        width: 100%;
    }
    
    .standout-list li {
        font-size: 0.95rem;
    }
}

/* Feature List Updates */
.feature-list li span.check-icon {
    min-width: 24px;
}

.feature-list li strong {
    color: var(--color-text-dark);
}

/* --- CUSTOM CONTACT FORM STYLES --- */
.custom-contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    backdrop-filter: blur(10px);
}

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

.custom-contact-form .form-group {
    margin-bottom: 25px;
}

.custom-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #E2E8F0;
}

.custom-contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

/* Ensure select dropdown options are visible */
.custom-contact-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-contact-form select.form-control option {
    background: #0F172A;
    color: #FFFFFF;
}

.custom-contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-blue-primary);
    background: rgba(255, 255, 255, 0.08);
}

/* Options Containers (Radio/Check) */
.budget-options, .timeline-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.radio-label, .check-label {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-label:hover, .check-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-blue-primary);
}

.radio-label input, .check-label input {
    accent-color: var(--color-blue-primary);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn-primary {
    padding: 16px 45px;
    font-size: 1.1rem;
}

/* Responsive Form */
@media (max-width: 768px) {
    .custom-contact-form {
        padding: 25px;
    }
    .custom-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .budget-options, .timeline-options {
        flex-direction: column;
    }
    .radio-label {
        width: 100%;
    }
}

/* --- BALANCED ABOUT SECTION STYLES --- */
.about-flex-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-main-text {
    flex: 1;
}

.about-main-text h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-body p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.about-features-column {
    flex: 1.2; /* Give the grid slightly more room */
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    border: 1px solid rgba(169, 207, 228, 0.3);
}

.features-grid-title {
    font-size: 1.5rem;
    color: var(--color-blue-primary);
    margin-bottom: 30px;
}

.features-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


        /* Smooth accordion open/close animation */
        .features-accordion details,
        .process-accordion details {
            overflow: hidden;
        }

        .features-accordion summary,
        .process-accordion summary {
            cursor: pointer;
        }

        /* Remove default disclosure markers */
        .features-accordion summary::-webkit-details-marker,
        .process-accordion summary::-webkit-details-marker { display: none; }
        .features-accordion summary::marker,
        .process-accordion summary::marker { content: ""; }

        .features-accordion-body,
        .process-accordion-body {
            max-height: 0;
            opacity: 0;
            transform: translateY(-6px);
            transition: max-height 320ms ease, opacity 260ms ease, transform 260ms ease;
            will-change: max-height, opacity, transform;
        }

        .features-accordion details[open] .features-accordion-body,
        .process-accordion details[open] .process-accordion-body {
            max-height: 260px; /* enough for 1–2 lines */
            opacity: 1;
            transform: translateY(0);
        }

.features-accordion details {
    border: 1px solid rgba(169, 207, 228, 0.35);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(248, 251, 253, 0.7);
}

.features-accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.features-accordion summary::-webkit-details-marker {
    display: none;
}

/* Ensure default disclosure markers are hidden consistently (Chrome/Firefox) */
.features-accordion summary::marker,
.process-accordion summary::marker {
    content: "";
}
.features-accordion summary,
.process-accordion summary {
    list-style: none;
}

.features-accordion summary::after {
    content: '+';
    font-weight: 800;
    color: var(--color-blue-primary);
    font-size: 1.2rem;
}

.features-accordion details[open] summary::after {
    content: '–';
}

.features-accordion-body {
    padding: 0 18px 16px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-flex-container {
        flex-direction: column;
        gap: 40px;
    }
    .about-main-text, .about-features-column {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .service-portrait-grid {
        grid-template-columns: 1fr;
    }

    .owner-message-wrap {
        padding: 28px;
    }

    .owner-message-title {
        font-size: 1.8rem;
    }

    .process-accordion summary {
        font-size: 1.1rem;
    }

    .about-main-text h2 {
        font-size: 2.2rem;
    }
}

/* ============================================================
   REVISION OVERRIDES — applied last to ensure correct render
   ============================================================ */

/* 1. Non-sticky navbar */
nav.navbar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

/* 2. Remove hero padding-top compensation */
header#hero {
    padding-top: 0 !important;
}

/* 3. Section contrast backgrounds */
section#about    { background: #1E293B !important; }
section#about h2, section#about .section-title, section#about p,
section#about .about-main-text h2, section#about .about-body p,
section#about .feature-title, section#about .feature-desc { color: #ffffff !important; }
section#about .text-gradient {
    background: linear-gradient(135deg, #7DD3FC, #38BDF8) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
section#service  { background: linear-gradient(180deg, #E6F4FA 0%, #F0F9FF 100%) !important; }
section#benefits { background: linear-gradient(180deg, #F0F9FF 0%, #E6F4FA 100%) !important; }

/* =========================
   ELEMENTOR-LIKE FOOTER (3 equal columns + equal gap)
   ========================= */

.site-footer{
  background: #ffffff;
  color: #64748B;
  padding: 60px 0 30px;
  border-top: 1px solid #eee;
}

.site-footer__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-footer__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 equal columns */
  gap: 40px; /* equal gap everywhere */
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

/* Titles */
.site-footer__title{
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0F172A;
  margin: 0 0 16px;
}

/* Column base */
.site-footer__col{
  min-width: 0; /* important so long email/strings don't push layout */
}

/* LINKS */
.site-footer__links{
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.site-footer__links li{ margin-bottom: 10px; }
.site-footer__links a{
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.site-footer__links a:hover{ color: #0F172A; }

/* SOCIAL */
.site-footer__social{
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.site-footer__social-icon{
  color: #475569;
  display: inline-flex;
  transition: transform 0.2s ease, color 0.2s ease;
}
.site-footer__social-icon:hover{
  color: #0F172A;
  transform: translateY(-2px);
}

/* BRAND (center column) */
.site-footer__col--brand{
  text-align: center;
}

.site-footer__logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #0F172A;
  font-weight: 800;
  margin-bottom: 10px;
}

.site-footer__logo-img{
  height: 52px;
  width: auto;
  display: block;
}

.site-footer__logo-icon{
  width: 26px;
  height: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
}
.site-footer__logo-icon i{
  display: block;
  background: #1D97C9;
  border-radius: 2px;
}
.site-footer__logo-icon i:nth-child(2){ background: #FDC601; }
.site-footer__logo-icon i:nth-child(3){ background: #FCA502; }

.site-footer__copyright{
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: #94A3B8;
}

/* CONTACT */
.site-footer__contact{
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__contact li{
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: #475569;
}

.site-footer__label{
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0F172A;
}

.site-footer__contact a{
  color: #475569;
  text-decoration: none;
  overflow-wrap: anywhere; /* prevents long email from breaking layout */
}
.site-footer__contact a:hover{ color: #0F172A; }

/* RESPONSIVE */
@media (max-width: 768px){
  .site-footer__grid{
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .site-footer__social{
    justify-content: center;
  }

  .site-footer__contact li{
    align-items: center;
  }
}
/* Make 3 columns, but align each column's content like Elementor (desktop/tablet) */
@media (min-width: 769px){
  .site-footer__col--links{
    justify-self: start;
    text-align: left;
  }

  .site-footer__col--brand{
    justify-self: center;
    text-align: center;
  }

  .site-footer__col--contact{
    justify-self: end;      /* pushes contact block to far right */
    text-align: left;       /* labels/text still read normally */
  }
}

/* On mobile the footer becomes a single column — keep everything centered */
@media (max-width: 768px){
  .site-footer__col--links,
  .site-footer__col--brand,
  .site-footer__col--contact{
    justify-self: center;
    text-align: center;
  }
}