/*
Theme Name: UCD Container Depot
Theme URI: https://unitcontainerdepot.com
Author: Unit Container Depot
Author URI: https://unitcontainerdepot.com
Description: A professional shipping container delivery & logistics WordPress theme for Unit Container Depot. Includes full navigation menu management, custom pages, contact info, and a modern responsive design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ucd-container-depot
Tags: business, logistics, shipping, container, responsive, custom-menu, custom-logo, featured-images
*/

/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:       #0e2340;
    --blue:       #1a3a5c;
    --blue-mid:   #1e4a6e;
    --gold:       #e8a020;
    --gold-dark:  #c8891a;
    --white:      #ffffff;
    --off-white:  #f4f6f8;
    --light-gray: #e8eaed;
    --mid-gray:   #888;
    --text:       #1a1a2e;
    --text-muted: #555;
    --border:     rgba(0,0,0,0.1);
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
    --radius:     8px;
    --radius-lg:  12px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
}

ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ============================================================
   TOP BAR
   ============================================================ */
.ucd-topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 9px 0;
    font-size: 13px;
}
.ucd-topbar .ucd-container {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.ucd-topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.ucd-topbar-item svg { flex-shrink: 0; }
.ucd-topbar-item a { color: rgba(255,255,255,0.8); }
.ucd-topbar-item a:hover { color: var(--gold); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.ucd-header {
    background: var(--blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.ucd-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

/* Logo */
.ucd-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.ucd-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ucd-logo-icon svg { width: 26px; height: 26px; }
.ucd-logo-text {
    display: flex;
    flex-direction: column;
}
.ucd-logo-text strong {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}
.ucd-logo-text span {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 0.5px;
}
.ucd-custom-logo { height: 48px; width: auto; border-radius: 6px; }

/* Nav Menu */
.ucd-nav { display: flex; align-items: center; gap: 4px; }
.ucd-nav ul { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.ucd-nav ul li { position: relative; }
.ucd-nav ul li a {
    display: block;
    color: rgba(255,255,255,0.85);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.ucd-nav ul li a:hover,
.ucd-nav ul li.current-menu-item > a,
.ucd-nav ul li.current_page_item > a {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

/* Quote CTA Button in Nav */
.ucd-nav ul li.menu-item-quote > a,
.ucd-nav ul li.menu-item-cta > a {
    background: var(--gold);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: var(--radius);
    font-weight: 700;
}
.ucd-nav ul li.menu-item-quote > a:hover,
.ucd-nav ul li.menu-item-cta > a:hover {
    background: var(--gold-dark);
}

/* Dropdown */
.ucd-nav ul li ul {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    display: none;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    z-index: 100;
}
.ucd-nav ul li:hover > ul { display: flex; }
.ucd-nav ul li ul li a {
    color: var(--text) !important;
    border-radius: 0;
    padding: 10px 16px;
    font-size: 13px;
}
.ucd-nav ul li ul li a:hover { background: var(--off-white); color: var(--blue) !important; }
.ucd-nav ul li ul li:first-child a { border-radius: var(--radius) var(--radius) 0 0; }
.ucd-nav ul li ul li:last-child a { border-radius: 0 0 var(--radius) var(--radius); }

/* Mobile Hamburger */
.ucd-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.ucd-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.ucd-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.ucd-section { padding: 72px 0; }
.ucd-section-sm { padding: 48px 0; }
.ucd-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.ucd-section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 48px;
}
.ucd-section-header { margin-bottom: 48px; }
.ucd-section-header .ucd-label {
    display: inline-block;
    background: rgba(232,160,32,0.1);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--blue); color: var(--white); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.ucd-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, var(--blue-mid) 100%);
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
}
.ucd-hero::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(232,160,32,0.07);
}
.ucd-hero::after {
    content: '';
    position: absolute;
    left: -40px; bottom: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.ucd-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.ucd-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,160,32,0.2);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.ucd-hero h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.ucd-hero h1 span { color: var(--gold); }
.ucd-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 520px;
}
.ucd-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.ucd-hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.ucd-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}
.ucd-trust-item svg { color: var(--gold); }

/* ============================================================
   STATS BAR
   ============================================================ */
.ucd-stats-bar {
    background: var(--gold);
    padding: 24px 0;
}
.ucd-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 16px;
}
.ucd-stat { color: var(--white); }
.ucd-stat-number { font-size: 32px; font-weight: 800; line-height: 1; }
.ucd-stat-label { font-size: 12px; opacity: 0.85; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.ucd-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ucd-service-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.ucd-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.ucd-service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ucd-service-card:hover::before { transform: scaleX(1); }
.ucd-service-icon {
    width: 52px; height: 52px;
    background: rgba(26,58,92,0.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}
.ucd-service-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.ucd-service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.ucd-service-card .ucd-card-link {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--blue); font-size: 13px; font-weight: 600;
    margin-top: 14px; transition: gap 0.2s;
}
.ucd-service-card:hover .ucd-card-link { gap: 8px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.ucd-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ucd-why-item {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
}
.ucd-why-item h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.ucd-why-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.ucd-contact-strip {
    background: var(--navy);
    padding: 60px 0;
    text-align: center;
}
.ucd-contact-strip h2 { color: var(--white); font-size: 30px; margin-bottom: 10px; }
.ucd-contact-strip > .ucd-container > p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 28px; }
.ucd-contact-info-row {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.ucd-contact-info-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.8); font-size: 14px;
}
.ucd-contact-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.ucd-page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 48px 0;
}
.ucd-page-header h1 { color: var(--white); font-size: 34px; font-weight: 800; margin-bottom: 6px; }
.ucd-page-header .ucd-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 10px;
}
.ucd-page-header .ucd-breadcrumb a { color: rgba(255,255,255,0.6); }
.ucd-page-header .ucd-breadcrumb a:hover { color: var(--gold); }
.ucd-page-header .ucd-breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */
.ucd-main-content { padding: 60px 0; }
.ucd-content-wrap { max-width: 860px; }
.ucd-content-wrap h2 { font-size: 26px; margin: 36px 0 14px; color: var(--navy); }
.ucd-content-wrap h2:first-child { margin-top: 0; }
.ucd-content-wrap h3 { font-size: 19px; margin: 24px 0 10px; color: var(--blue); }
.ucd-content-wrap p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.ucd-content-wrap ul, .ucd-content-wrap ol { padding-left: 20px; margin-bottom: 16px; }
.ucd-content-wrap ul { list-style: disc; }
.ucd-content-wrap ol { list-style: decimal; }
.ucd-content-wrap li { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }
.ucd-content-wrap hr { border: none; border-top: 1px solid var(--light-gray); margin: 36px 0; }
.ucd-content-wrap strong { color: var(--navy); }
.ucd-content-wrap a { color: var(--blue); font-weight: 500; }
.ucd-content-wrap table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.ucd-content-wrap th { background: var(--off-white); padding: 12px; text-align: left; border: 1px solid var(--light-gray); font-size: 13px; font-weight: 600; }
.ucd-content-wrap td { padding: 12px; border: 1px solid var(--light-gray); font-size: 14px; color: var(--text-muted); }

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.ucd-contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; }
.ucd-contact-card {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.ucd-contact-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.ucd-contact-card p { font-size: 14px; color: var(--text-muted); line-height: 1.9; margin: 0; }
.ucd-contact-card a { color: var(--blue); }

/* ============================================================
   FORMS
   ============================================================ */
.ucd-form-box {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 600px;
}
.ucd-form-box h3 { font-size: 18px; color: var(--navy); margin-bottom: 24px; font-weight: 700; }
.ucd-form-row { margin-bottom: 16px; }
.ucd-form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.ucd-form-row input,
.ucd-form-row select,
.ucd-form-row textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 14px;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s;
}
.ucd-form-row input:focus,
.ucd-form-row select:focus,
.ucd-form-row textarea:focus { outline: none; border-color: var(--blue); }
.ucd-form-row textarea { resize: vertical; }
.ucd-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ucd-form-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}
.ucd-form-submit:hover { background: var(--blue); }
.ucd-form-note { font-size: 12px; color: var(--mid-gray); text-align: center; margin-top: 10px; }

/* ============================================================
   TRACKING PAGE
   ============================================================ */
.ucd-track-box {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 500px;
    margin: 0 0 40px;
}
.ucd-track-box h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.ucd-track-input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 15px;
    background: var(--white);
    margin-bottom: 12px;
}
.ucd-track-btn {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 13px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.ucd-track-btn:hover { background: var(--navy); }
.ucd-track-result {
    margin-top: 16px;
    background: #e3f2fd;
    border: 1px solid #1565c0;
    border-radius: var(--radius);
    padding: 16px;
    font-size: 14px;
    display: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.ucd-faq-section-label {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin: 28px 0 16px;
}
.ucd-faq-item {
    border-bottom: 1px solid var(--light-gray);
    padding: 20px 0;
}
.ucd-faq-item:last-child { border-bottom: none; }
.ucd-faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.ucd-faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.ucd-faq-item.open .ucd-faq-question::after { transform: rotate(45deg); }
.ucd-faq-answer {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 12px;
    display: none;
}
.ucd-faq-item.open .ucd-faq-answer { display: block; }

/* ============================================================
   MAP / GOOGLE MAPS
   ============================================================ */
.ucd-map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--light-gray); margin: 32px 0; }
.ucd-map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.ucd-footer { background: #0a1a2e; padding: 60px 0 0; }
.ucd-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ucd-footer-about .ucd-footer-logo {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
}
.ucd-footer-about .ucd-footer-logo-icon {
    width: 36px; height: 36px;
    background: var(--gold);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
}
.ucd-footer-about .ucd-footer-logo strong { color: var(--white); font-size: 16px; }
.ucd-footer-about p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.8; }
.ucd-footer-col h4 {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.ucd-footer-col ul li { margin-bottom: 8px; }
.ucd-footer-col ul li a {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    transition: color 0.2s;
}
.ucd-footer-col ul li a:hover { color: var(--gold); }
.ucd-footer-contact-item {
    display: flex; align-items: flex-start; gap: 8px;
    color: rgba(255,255,255,0.45); font-size: 13px; margin-bottom: 10px; line-height: 1.6;
}
.ucd-footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.ucd-footer-bottom {
    padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.ucd-footer-bottom p { color: rgba(255,255,255,0.25); font-size: 12px; }
.ucd-footer-bottom-links { display: flex; gap: 20px; }
.ucd-footer-bottom-links a { color: rgba(255,255,255,0.3); font-size: 12px; }
.ucd-footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   WORDPRESS MENU NAVIGATION (wp_nav_menu)
   ============================================================ */
.menu { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; padding: 0; }
.menu li { list-style: none; position: relative; }
.menu > li > a {
    display: block;
    color: rgba(255,255,255,0.85);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.menu > li > a:hover,
.menu > li.current-menu-item > a,
.menu > li.current_page_item > a { background: rgba(255,255,255,0.15); color: var(--white); }
.menu > li > ul {
    position: absolute; top: calc(100% + 4px); left: 0;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-md); min-width: 200px;
    display: none; flex-direction: column;
    border: 1px solid var(--border); z-index: 100; padding: 4px 0;
}
.menu > li:hover > ul { display: flex; }
.menu > li > ul > li > a {
    color: var(--text) !important; border-radius: 0; padding: 10px 16px; font-size: 13px;
}
.menu > li > ul > li > a:hover { background: var(--off-white); color: var(--blue) !important; }

/* Footer nav menu */
.ucd-footer-nav { display: flex; flex-wrap: wrap; gap: 4px 16px; padding: 0; }
.ucd-footer-nav li { list-style: none; }
.ucd-footer-nav li a { color: rgba(255,255,255,0.45); font-size: 12px; }
.ucd-footer-nav li a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .ucd-footer-grid { grid-template-columns: 1fr 1fr; }
    .ucd-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ucd-hero h1 { font-size: 32px; }
    .ucd-nav { display: none; }
    .ucd-hamburger { display: flex; }
    .ucd-nav.open {
        display: flex; flex-direction: column; align-items: stretch;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--blue);
        padding: 16px;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    .ucd-nav.open .menu,
    .ucd-nav.open ul { flex-direction: column; width: 100%; gap: 2px; }
    .ucd-nav.open .menu > li > ul { position: static; box-shadow: none; border: none; background: rgba(0,0,0,0.15); }
    .ucd-nav.open .menu > li > ul li a { color: rgba(255,255,255,0.8) !important; }
    .ucd-header-inner { position: relative; }
    .ucd-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .ucd-services-grid { grid-template-columns: 1fr; }
    .ucd-why-grid { grid-template-columns: 1fr; }
    .ucd-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .ucd-contact-cards { grid-template-columns: 1fr; }
    .ucd-section-title { font-size: 26px; }
    .ucd-form-2col { grid-template-columns: 1fr; }
    .ucd-topbar .ucd-container { gap: 12px; font-size: 12px; }
}

@media (max-width: 480px) {
    .ucd-hero { padding: 60px 0 48px; }
    .ucd-hero h1 { font-size: 26px; }
    .ucd-hero-btns { flex-direction: column; }
    .ucd-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .ucd-contact-strip-btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   WORDPRESS DEFAULTS
   ============================================================ */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 0 auto 20px; }
.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden;
    padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.ucd-skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.ucd-skip-link:focus { left: 6px; top: 6px; width: auto; height: auto; background: var(--gold); color: #fff; padding: 8px 16px; border-radius: 4px; z-index: 9999; font-size: 14px; font-weight: 700; }
