/* ===========================================
   TechDrive 365 - Main Stylesheet
   Braintech-style IT Services Theme
   =========================================== */

/* CSS Variables */
:root {
    --primary:        #2a6df4;
    --primary-dark:   #1e47d1;
    --primary-light:  #5b9bff;
    --accent:         #5dade2;
    --accent-cyan:    #4dd0e1;
    --secondary:      #1a2b4a;
    --text:           #2a2a2a;
    --text-muted:     #6b7280;
    --bg:             #ffffff;
    --bg-soft:        #f5f7fb;
    --bg-light-blue:  #eef4ff;
    --border:         #e5e9f2;

    /* Vibrant gradients (replaces dark blue) */
    --nav-gradient:    linear-gradient(135deg, #2a6df4 0%, #4a90e2 50%, #5dade2 100%);
    --hero-gradient:   linear-gradient(135deg, #1e47d1 0%, #2a6df4 50%, #4a90e2 100%);
    --cta-gradient:    linear-gradient(135deg, #4a90e2 0%, #5dade2 50%, #6dc6e8 100%);
    --soft-gradient:   linear-gradient(135deg, #eef4ff 0%, #dde8ff 100%);
    --button-gradient: linear-gradient(135deg, #2a6df4 0%, #1e47d1 100%);

    --shadow-sm:      0 2px 8px rgba(42, 109, 244, 0.08);
    --shadow-md:      0 8px 24px rgba(42, 109, 244, 0.15);
    --shadow-lg:      0 20px 50px rgba(42, 109, 244, 0.22);
    --radius:         8px;
    --radius-lg:      16px;
    --font-body:      'Rubik', 'Poppins', sans-serif;
    --font-heading:   'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--primary); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary);
}

ul { list-style: none; }

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

/* ===========================================
   TOP BAR
   =========================================== */
.top-bar {
    background: #fff;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.logo {
    display: inline-block;
    line-height: 0;
}

.logo img {
    height: 58px;
    width: auto;
    display: block;
    transition: transform .25s ease;
}

.logo:hover img {
    transform: scale(1.03);
}

.logo-footer img {
    height: 52px;
    /* Footer has dark background, the logo already has transparent bg so it blends */
    filter: brightness(1.05);
}

/* Top info (address + email) */
.top-info {
    display: flex;
    gap: 40px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(30, 71, 209, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
}

.info-value {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===========================================
   NAVIGATION
   =========================================== */
.main-nav {
    background: var(--nav-gradient);
    position: relative;
    z-index: 90;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-item { position: relative; }

.nav-link {
    display: inline-block;
    padding: 20px 24px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all .25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffeb3b;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: #ffeb3b;
}

.dropdown-caret {
    font-size: 11px;
    margin-left: 6px;
    transition: transform .25s ease;
}

.has-dropdown:hover .dropdown-caret {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 320px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 100;
    border-radius: 0 0 6px 6px;
}

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

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all .2s ease;
}

.dropdown-menu li a i {
    width: 20px;
    color: var(--primary);
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: var(--bg-soft);
    border-left-color: var(--primary);
    color: var(--primary);
    padding-left: 28px;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all .3s;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    position: relative;
    min-height: 640px;
    background:
        linear-gradient(rgba(12, 24, 55, 0.75), rgba(12, 24, 55, 0.55)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero::before {
    content: 'MAKE IT';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 800;
    color: rgba(255,255,255,0.04);
    letter-spacing: -4px;
    line-height: 1;
    pointer-events: none;
    white-space: pre-line;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-content h1 .highlight {
    color: #5dade2;
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 6px;
    background: rgba(93, 173, 226, 0.25);
    z-index: -1;
}

.hero-content .quote {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    margin-bottom: 32px;
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .3s ease;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--button-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(42, 109, 244, 0.35);
}
.btn-primary:hover {
    background: var(--button-gradient);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(42, 109, 244, 0.45);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

/* Appointment Form Card */
.appointment-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    color: var(--text);
}

.appointment-card h3 {
    font-size: 26px;
    color: var(--secondary);
    margin-bottom: 8px;
    text-align: center;
}

.appointment-card .sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

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

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    transition: all .25s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30, 71, 209, 0.1);
}

textarea.form-control { resize: vertical; min-height: 100px; }

.form-control::placeholder { color: #aab1c0; }

.form-submit {
    width: 100%;
    background: var(--button-gradient);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 4px;
    box-shadow: 0 4px 14px rgba(42, 109, 244, 0.35);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(42, 109, 244, 0.45);
}

.form-msg { text-align: center; margin-top: 12px; font-size: 14px; }
.form-msg.success { color: #0a7d3b; }
.form-msg.error { color: #c8263a; }

/* ===========================================
   SECTIONS & COMMON
   =========================================== */
.section {
    padding: 90px 0;
}

.section-alt {
    background: var(--bg-soft);
}

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

.section-title .tagline {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--nav-gradient);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 0;
}

.service-card > * { position: relative; z-index: 1; }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { background: rgba(255,255,255,0.2); color: #fff; }
.service-card:hover h3,
.service-card:hover p { color: #fff; }
.service-card:hover .service-link { color: #ffeb3b; }

.service-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    background: rgba(30, 71, 209, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all .35s ease;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    transition: color .35s;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 18px;
    transition: color .35s;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: color .35s;
}

/* Feature strip */
.features {
    background: var(--nav-gradient);
    color: #fff;
    padding: 60px 0;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
}

.feature i {
    font-size: 40px;
    color: #ffd54f;
}

.feature h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.feature p { font-size: 14px; opacity: .85; }

/* ===========================================
   INNER PAGE HEADER
   =========================================== */
.page-header {
    background:
        linear-gradient(rgba(11, 47, 168, 0.85), rgba(30, 71, 209, 0.85)),
        url('../images/page-header-bg.jpg') center/cover;
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 14px;
}

.breadcrumb {
    display: inline-flex;
    gap: 10px;
    font-size: 15px;
    opacity: .9;
}
.breadcrumb a { color: #ffd54f; }
.breadcrumb .sep { opacity: .6; }

/* ===========================================
   PLANS / PRICING
   =========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 34px;
    text-align: center;
    transition: all .35s ease;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px; right: -38px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

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

.pricing-card h3 { font-size: 22px; margin-bottom: 8px; }
.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin: 14px 0 6px;
    font-family: var(--font-heading);
}
.pricing-card .price small { font-size: 16px; color: var(--text-muted); font-weight: 400; }

.pricing-card ul {
    margin: 28px 0;
    text-align: left;
}
.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-card ul li i { color: #0a7d3b; }
.pricing-card ul li.unavailable { color: #aaa; text-decoration: line-through; }
.pricing-card ul li.unavailable i { color: #c8263a; }

/* ===========================================
   CONTACT
   =========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--nav-gradient);
    color: #fff;
    padding: 44px 36px;
    border-radius: var(--radius-lg);
}

.contact-info-card h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.contact-info-card .sub { opacity: .9; margin-bottom: 32px; }

.contact-info-list li {
    display: flex;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    align-items: center;
}
.contact-info-list li i {
    font-size: 20px;
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-list li span { display: block; font-size: 15px; }
.contact-info-list li strong { display: block; font-size: 13px; opacity: .7; margin-bottom: 2px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

.contact-form-card {
    background: #fff;
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

/* ===========================================
   SERVICE DETAIL PAGE
   =========================================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.service-body h2 { font-size: 30px; margin-bottom: 18px; }
.service-body p { margin-bottom: 16px; color: var(--text-muted); font-size: 16px; }
.service-body ul { margin: 20px 0; }
.service-body ul li {
    padding: 8px 0 8px 32px;
    position: relative;
}
.service-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 10px;
    color: var(--primary);
    background: rgba(30, 71, 209, 0.1);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.service-sidebar .sidebar-widget {
    background: var(--bg-soft);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.service-nav li a {
    display: block;
    padding: 12px 16px;
    background: #fff;
    margin-bottom: 8px;
    border-radius: 6px;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    transition: all .25s;
    border-left: 3px solid transparent;
}
.service-nav li a:hover,
.service-nav li a.active {
    background: var(--primary);
    color: #fff;
    border-left-color: #ffd54f;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
    background: #0a1834;
    color: #b7c0d1;
    padding: 70px 0 0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col .logo-footer { margin-bottom: 20px; }
.footer-about { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all .3s;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-heading {
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 2px;
    background: var(--primary);
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
}
.footer-links a i { font-size: 10px; color: var(--primary); }
.footer-links a:hover { color: #fff; padding-left: 5px; }

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.5;
}
.footer-contact li i {
    color: var(--primary);
    margin-top: 3px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom a { color: #b7c0d1; }
.footer-bottom a:hover { color: var(--primary); }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-content h1 { font-size: 42px; }
    .hero::before { font-size: 80px; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .top-info { gap: 24px; }
}

@media (max-width: 768px) {
    .top-bar-inner { flex-wrap: wrap; }
    .top-info { order: 3; width: 100%; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 16px; }
    .mobile-toggle { display: flex; }

    .main-nav { position: relative; }
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--primary-dark);
        padding: 10px 0;
        align-items: stretch;
    }
    .main-nav.open .nav-list { display: flex; }
    .nav-link { padding: 14px 24px; width: 100%; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        background: rgba(0,0,0,0.15);
    }
    .has-dropdown.open .dropdown-menu { max-height: 600px; }
    .dropdown-menu li a { color: #fff; }
    .dropdown-menu li a:hover { background: rgba(255,255,255,0.1); color: #ffd54f; }

    .hero-content h1 { font-size: 34px; }
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 30px; }
    .page-header h1 { font-size: 34px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
}

@media (max-width: 480px) {
    .logo img { height: 44px; }
    .appointment-card { padding: 28px 22px; }
    .hero-content h1 { font-size: 28px; }
}

/* ===========================================
   NEW HOMEPAGE SECTIONS — to match expanded layout
   =========================================== */

/* ABOUT US — image collage + progress bars */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 480px;
}

.about-images .img-1,
.about-images .img-2,
.about-images .img-3 {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-images .img-1 {
    top: 0; left: 0;
    width: 50%;
    height: 230px;
    z-index: 1;
}

.about-images .img-2 {
    top: 80px; left: 35%;
    width: 60%;
    height: 280px;
    z-index: 2;
    border: 6px solid #fff;
}

.about-images .img-3 {
    bottom: 0; left: 5%;
    width: 50%;
    height: 200px;
    z-index: 1;
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA banner image - transparent PNG over blue gradient */
.cta-img {
    max-height: 500px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* Testimonial avatars - local image files */
.avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.about-content .pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.about-content .pretitle::before {
    content: '';
    width: 36px;
    height: 2px;
    background: var(--primary);
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.8;
}

/* Progress bars */
.progress-list {
    margin-bottom: 30px;
}

.progress-item {
    margin-bottom: 22px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.progress-track {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--button-gradient);
    border-radius: 100px;
    width: 0;
    transition: width 1.5s ease-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(42, 109, 244, 0.18);
}

/* ===========================================
   STATS CTA — "Have an Idea or Project?"
   =========================================== */
.cta-banner {
    background: var(--cta-gradient);
    position: relative;
    overflow: hidden;
    padding: 90px 0 0;
    color: #fff;
    margin-top: 30px;
}

/* Subtle dot pattern overlay using radial gradient */
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.18) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: end;
    position: relative;
    z-index: 1;
}

.cta-image {
    text-align: center;
    position: relative;
}

.cta-image img {
    max-height: 460px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

.cta-image .thought-bubble {
    position: absolute;
    top: 40px;
    right: 20%;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}

.cta-content {
    text-align: center;
    padding-bottom: 80px;
}

.cta-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta-content .small-text {
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.95;
}

.cta-content .big-phone {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.cta-content .desc {
    max-width: 560px;
    margin: 0 auto 28px;
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-content .btn {
    background: var(--button-gradient);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px 38px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}
.cta-content .btn:hover {
    background: #fff;
    color: var(--primary);
}

/* Stats card overlapping the CTA bottom */
.stats-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    margin-top: -60px;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    border-right: 1px solid var(--border);
    padding: 10px 20px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 6px;
    background: var(--button-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ===========================================
   WORKING PROCESS — 4 numbered steps
   =========================================== */
.process-section {
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.process-intro {
    background:
        linear-gradient(135deg, rgba(30, 71, 209, 0.92), rgba(42, 109, 244, 0.85)),
        url('../images/process-bg.jpg') center/cover;
    color: #fff;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.process-intro .pretitle {
    color: #fff;
    opacity: 0.85;
    margin-bottom: 14px;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}

.process-intro h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 24px;
    line-height: 1.25;
}

.process-intro .btn {
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: 100px;
    padding: 12px 30px;
    font-size: 14px;
}
.process-intro .btn:hover {
    background: var(--secondary);
    color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.process-step {
    position: relative;
    padding-left: 70px;
}

.process-step .step-num {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 60px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
    background: var(--button-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-soft);
    position: relative;
}

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

.testimonial-card {
    background: #fff;
    padding: 40px 30px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all .35s ease;
    position: relative;
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(42, 109, 244, 0.15);
}

.testimonial-card .quote-icon {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 14px;
    opacity: 0.9;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.testimonial-author h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Carousel dots (optional decorative) */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonial-dots span {
    width: 30px;
    height: 4px;
    background: var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all .3s;
}

.testimonial-dots span.active {
    background: var(--button-gradient);
    width: 50px;
}

/* ===========================================
   NEWSLETTER / EXPANDED FOOTER
   =========================================== */
.site-footer {
    background:
        linear-gradient(135deg, #eef4ff 0%, #dde8ff 100%);
    color: #4a5568;
    padding: 80px 0 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative gradient overlay */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(42, 109, 244, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(93, 173, 226, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    grid-template-columns: 1.4fr 1fr 1.3fr 1.4fr;
}

.footer-col .logo-footer img {
    height: 52px;
    filter: none; /* light footer now */
}

.footer-about {
    color: #4a5568;
    font-size: 14px;
}

.footer-heading {
    color: var(--secondary);
    font-size: 18px;
}

.footer-heading::after {
    background: var(--button-gradient);
}

.footer-links a {
    color: #4a5568;
}

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

.footer-links a i {
    color: var(--primary);
}

.footer-contact li {
    color: #4a5568;
}

.footer-contact li i {
    color: #fff;
    background: var(--button-gradient);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 0;
}

/* Newsletter input */
.newsletter-form {
    position: relative;
    margin-top: 12px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 56px 14px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(42, 109, 244, 0.06);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--button-gradient);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .25s;
}

.newsletter-form button:hover {
    transform: translateY(-50%) scale(1.08);
}

.footer-social a {
    background: rgba(42, 109, 244, 0.08);
    color: var(--primary);
}

.footer-social a:hover {
    background: var(--button-gradient);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(42, 109, 244, 0.12);
    color: #4a5568;
}

.footer-bottom a {
    color: #4a5568;
}

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

/* ===========================================
   HERO ANGLE-CUT BOTTOM
   =========================================== */
.hero {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}

/* Updated hero gradient overlay */
.hero {
    background:
        linear-gradient(135deg, rgba(30, 71, 209, 0.85) 0%, rgba(42, 109, 244, 0.65) 50%, rgba(93, 173, 226, 0.55) 100%),
        url('../images/hero-bg.jpg') center/cover no-repeat;
}

/* ===========================================
   RESPONSIVE — additions for new sections
   =========================================== */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-images { min-height: 400px; }
    .cta-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-image img { max-height: 300px; }
    .cta-content { padding-bottom: 40px; }
    .process-grid { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .stat-item { padding: 5px 8px; }
    .stat-number { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { clip-path: none; }
    .about-section, .process-section, .testimonials-section { padding: 60px 0; }
    .about-content h2 { font-size: 28px; }
    .process-steps { grid-template-columns: 1fr; gap: 30px; }
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
    .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
    .cta-content .big-phone { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-card { padding: 24px 20px; }
}
