/**
 * Delta World Vision - Custom Theme Styles
 * Blue & White Medical/Dental Equipment Theme
 * Inspired by professional dental supply company layouts
 * 
 * Color Palette:
 *   --dwv-primary:     #0056A6 (Deep Medical Blue)
 *   --dwv-secondary:   #003D7A (Navy Blue)
 *   --dwv-accent:      #00A0E3 (Bright Sky Blue)
 *   --dwv-highlight:   #E8F4FD (Light Blue Wash)
 *   --dwv-text:        #333333 (Dark Gray)
 *   --dwv-text-light:  #666666 (Medium Gray)
 *   --dwv-white:       #FFFFFF
 *   --dwv-border:      #E0E8F0 (Blue-tinged Border)
 *   --dwv-success:     #28A745 (Green for CTA accents)
 */

:root {
    /* Override Unita's default color vars for Delta World Vision */
    --e-global-color-primary: #0056A6;
    --e-global-color-secondary: #003D7A;
    --e-global-color-text: #444444;
    --e-global-color-accent: #003D7A;
    --e-global-color-lighter: #888888;
    --e-global-color-border: #E0E8F0;
    --e-global-color-highlight: #00A0E3;
    --body-color: #FFFFFF;

    /* Typography - Professional medical feel */
    --e-global-typography-primary-font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --e-global-typography-primary-font-weight: 400;
    --e-global-typography-primary-letter-spacing: 0;
    --e-global-typography-secondary-font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --e-global-typography-secondary-font-weight: 700;
    --e-global-typography-secondary-letter-spacing: -0.01em;
    --e-global-typography-text-font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-text-letter-spacing: 0;
    --e-global-typography-accent-font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --e-global-typography-accent-font-weight: 600;
    --e-global-typography-accent-text-transform: none;

    /* DWV Custom Properties */
    --dwv-primary: #0056A6;
    --dwv-secondary: #003D7A;
    --dwv-accent: #00A0E3;
    --dwv-highlight: #E8F4FD;
    --dwv-text: #333333;
    --dwv-text-light: #666666;
    --dwv-white: #FFFFFF;
    --dwv-border: #E0E8F0;
    --dwv-success: #28A745;
    --dwv-gradient: linear-gradient(135deg, #0056A6 0%, #00A0E3 100%);
    --dwv-shadow: 0 4px 20px rgba(0, 86, 166, 0.08);
    --dwv-shadow-hover: 0 8px 30px rgba(0, 86, 166, 0.15);
    --dwv-radius: 8px;
    --dwv-radius-lg: 12px;
    --container-max-width: 1320px;
}

/* ============================================
   GLOBAL RESETS FOR DWV
   ============================================ */
body {
    background-color: #FFFFFF;
    color: var(--dwv-text);
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--dwv-primary);
    color: #fff;
}

a {
    color: var(--dwv-primary);
    transition: color 0.25s ease;
}
a:hover {
    color: var(--dwv-accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
    font-weight: 700;
    color: var(--dwv-secondary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.75rem; }
}

/* ============================================
   TOP BAR (Contact info strip)
   ============================================ */
.dwv-top-bar {
    background: var(--dwv-secondary);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 2px solid var(--dwv-accent);
}
.dwv-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.dwv-top-bar a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s;
}
.dwv-top-bar a:hover {
    color: var(--dwv-accent);
}
.dwv-top-bar .top-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.dwv-top-bar .top-contact span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dwv-top-bar .top-social {
    display: flex;
    gap: 12px;
}
.dwv-top-bar .top-social a {
    font-size: 14px;
}
@media (max-width: 768px) {
    .dwv-top-bar {
        text-align: center;
        font-size: 12px;
    }
    .dwv-top-bar .container {
        justify-content: center;
    }
    .dwv-top-bar .top-social {
        display: none;
    }
}

/* ============================================
   MAIN HEADER / NAVIGATION
   ============================================ */
.site-header {
    background: #FFFFFF;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0 15px;
}
@media (min-width: 768px) {
    .site-header {
        padding: 0 30px;
    }
}

.header-main {
    min-height: 70px;
}
@media (min-width: 1024px) {
    .header-main {
        min-height: 80px;
    }
}

.site-branding img {
    max-height: 55px;
    width: auto;
}
@media (min-width: 1024px) {
    .site-branding img {
        max-height: 60px;
    }
}

/* Navigation Links */
.main-navigation ul.menu > li.menu-item > a {
    font-size: 14px;
    font-weight: 600;
    color: var(--dwv-secondary);
    text-transform: none;
    letter-spacing: 0;
    padding: 0;
    transition: color 0.25s;
}
.main-navigation ul.menu > li.menu-item > a:hover,
.main-navigation ul.menu li.current-menu-item > a,
.main-navigation ul.menu li.current-menu-ancestor > a {
    color: var(--dwv-accent);
}
.main-navigation ul.menu > li.menu-item {
    padding: 20px 15px;
}

/* Dropdown */
.main-navigation ul.sub-menu {
    background-color: #FFFFFF;
    border-radius: var(--dwv-radius);
    box-shadow: var(--dwv-shadow-hover);
    border-top: 3px solid var(--dwv-primary);
    padding: 15px 0;
}
.main-navigation ul.sub-menu li.menu-item > a {
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    color: var(--dwv-text);
}
.main-navigation ul.sub-menu li.menu-item:hover > a {
    color: var(--dwv-primary);
}

/* Mobile hamburger */
.menu-mobile-nav-button .unita-icon span,
.unita-info-button .unita-icon span {
    background-color: var(--dwv-secondary);
}

/* Header CTA button in nav */
.dwv-header-cta .elementor-button,
.header-group-action .dwv-cta-btn {
    background: var(--dwv-primary) !important;
    color: #fff !important;
    border-radius: var(--dwv-radius) !important;
    font-size: 13px !important;
    padding: 10px 20px !important;
    font-weight: 600;
    border: none !important;
    transition: all 0.3s ease;
}
.dwv-header-cta .elementor-button:hover,
.header-group-action .dwv-cta-btn:hover {
    background: var(--dwv-accent) !important;
    transform: translateY(-1px);
}

/* ============================================
   ELEMENTOR OVERRIDES
   ============================================ */

/* Section spacing */
body.elementor-page #page .site-content {
    margin-top: 0;
    margin-bottom: 0;
}

/* Elementor buttons */
.elementor-button {
    border-radius: var(--dwv-radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
    transition: all 0.3s ease;
    background-color: var(--dwv-primary);
}
.elementor-button:hover,
.elementor-button:focus {
    background-color: var(--dwv-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,86,166,0.25);
}

.elementor-button-outline .elementor-button,
.button-outline .elementor-button {
    border: 2px solid var(--dwv-primary);
    color: var(--dwv-primary);
    background: transparent;
}
.elementor-button-outline .elementor-button:hover,
.button-outline .elementor-button:hover {
    background: var(--dwv-primary);
    color: #fff;
    border-color: var(--dwv-primary);
}

/* Elementor headings */
.elementor-heading-title {
    color: var(--dwv-secondary);
}

/* Elementor icon boxes */
.elementor-icon-box-icon .elementor-icon {
    color: var(--dwv-primary);
}

/* Elementor sections */
.elementor-section {
    /* smooth transitions for Elementor sections */
}

/* ============================================
   DWV HERO SECTION
   ============================================ */
.dwv-hero {
    position: relative;
    background: var(--dwv-gradient);
    color: #fff;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.dwv-hero::before {
    content: '';
    position: absolute;
    right: -5%;
    top: -15%;
    width: 50%;
    height: 130%;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}
.dwv-hero .dwv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.dwv-hero .dwv-hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.dwv-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .dwv-hero h1 {
        font-size: 3.25rem;
    }
}
.dwv-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}
.dwv-hero .dwv-hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.dwv-hero .dwv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--dwv-primary);
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--dwv-radius);
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}
.dwv-hero .dwv-btn-primary:hover {
    background: var(--dwv-highlight);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: var(--dwv-primary);
}
.dwv-hero .dwv-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--dwv-radius);
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}
.dwv-hero .dwv-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* ============================================
   PRODUCT CATEGORIES GRID
   ============================================ */
.dwv-categories-section {
    padding: 80px 0;
    background: #FFFFFF;
}
.dwv-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.dwv-section-header .dwv-section-tag {
    display: inline-block;
    color: var(--dwv-accent);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.dwv-section-header h2 {
    font-size: 2rem;
    color: var(--dwv-secondary);
    margin-bottom: 15px;
}
@media (min-width: 768px) {
    .dwv-section-header h2 {
        font-size: 2.25rem;
    }
}
.dwv-section-header p {
    color: var(--dwv-text-light);
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
}

.dwv-cat-card {
    background: #fff;
    border-radius: var(--dwv-radius-lg);
    overflow: hidden;
    box-shadow: var(--dwv-shadow);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid var(--dwv-border);
}
.dwv-cat-card:hover {
    box-shadow: var(--dwv-shadow-hover);
    transform: translateY(-6px);
    border-color: var(--dwv-primary);
}
.dwv-cat-card .cat-image {
    position: relative;
    overflow: hidden;
    padding-top: 65%;
}
.dwv-cat-card .cat-image img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.dwv-cat-card:hover .cat-image img {
    transform: scale(1.08);
}
.dwv-cat-card .cat-body {
    padding: 24px;
}
.dwv-cat-card .cat-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dwv-secondary);
}
.dwv-cat-card .cat-body h3 a {
    color: inherit;
    text-decoration: none;
}
.dwv-cat-card .cat-body h3 a:hover {
    color: var(--dwv-primary);
}
.dwv-cat-card .cat-body p {
    font-size: 14px;
    color: var(--dwv-text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}
.dwv-cat-card .cat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
    color: var(--dwv-primary);
    text-decoration: none;
    transition: gap 0.3s;
}
.dwv-cat-card .cat-link:hover {
    gap: 10px;
    color: var(--dwv-accent);
}

/* ============================================
   ABOUT / COMPANY PROFILE SECTION
   ============================================ */
.dwv-about-section {
    padding: 80px 0;
    background: var(--dwv-highlight);
}
.dwv-about-section .about-content h2 {
    margin-bottom: 20px;
}
.dwv-about-section .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}
.dwv-about-section .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.dwv-about-section .feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--dwv-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.dwv-about-section .feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.dwv-about-section .feature-text p {
    font-size: 13px;
    color: var(--dwv-text-light);
    margin: 0;
}
@media (max-width: 600px) {
    .dwv-about-section .about-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BRANDS / PARTNERS SECTION
   ============================================ */
.dwv-brands-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid var(--dwv-border);
    border-bottom: 1px solid var(--dwv-border);
}
.dwv-brands-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
.dwv-brands-grid img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}
.dwv-brands-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   CTA BANNER
   ============================================ */
.dwv-cta-section {
    padding: 70px 0;
    background: var(--dwv-gradient);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dwv-cta-section::before {
    content: '';
    position: absolute;
    left: -10%;
    bottom: -30%;
    width: 40%;
    height: 160%;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.dwv-cta-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}
.dwv-cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
}
.dwv-cta-section .dwv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--dwv-primary);
    font-weight: 700;
    padding: 14px 35px;
    border-radius: var(--dwv-radius);
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}
.dwv-cta-section .dwv-btn-primary:hover {
    background: var(--dwv-highlight);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: var(--dwv-primary);
}

/* ============================================
   CONTACT INFO BAR
   ============================================ */
.dwv-contact-bar {
    padding: 50px 0;
    background: var(--dwv-highlight);
}
.dwv-contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.dwv-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 25px;
    border-radius: var(--dwv-radius-lg);
    box-shadow: var(--dwv-shadow);
}
.dwv-contact-card .contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--dwv-primary);
    color: #fff;
    border-radius: var(--dwv-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.dwv-contact-card .contact-info h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dwv-text-light);
    font-weight: 600;
    margin-bottom: 4px;
}
.dwv-contact-card .contact-info p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--dwv-secondary);
}
.dwv-contact-card .contact-info a {
    color: var(--dwv-primary);
    text-decoration: none;
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.dwv-footer {
    background: var(--dwv-secondary);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}
.dwv-footer h3,
.dwv-footer .widget-title,
.dwv-footer .widgettitle {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--dwv-accent);
    display: inline-block;
}
.dwv-footer a {
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}
.dwv-footer a:hover {
    color: var(--dwv-accent);
}
.dwv-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dwv-footer ul li {
    margin-bottom: 8px;
}
.dwv-footer ul li a {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dwv-footer ul li a::before {
    content: '›';
    font-weight: 700;
    color: var(--dwv-accent);
}
.dwv-footer .footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
}
.dwv-footer .footer-about p {
    font-size: 14px;
    line-height: 1.7;
}

.dwv-footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.dwv-footer-bottom a {
    color: var(--dwv-accent);
}

/* Scroll to top */
.scrollup {
    background-color: var(--dwv-primary);
    border-radius: var(--dwv-radius);
}
.scrollup:hover {
    background-color: var(--dwv-accent);
}

/* ============================================
   FORM STYLES
   ============================================ */
input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=search],
textarea,
.input-text,
select {
    border: 1px solid var(--dwv-border);
    border-radius: var(--dwv-radius);
    padding: 12px 18px;
    transition: border-color 0.25s, box-shadow 0.25s;
    font-size: 14px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
textarea:focus,
select:focus {
    border-color: var(--dwv-primary);
    box-shadow: 0 0 0 3px rgba(0,86,166,0.1);
    outline: none;
}

input[type=submit] {
    background-color: var(--dwv-primary);
    border-radius: var(--dwv-radius);
    border: none;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}
input[type=submit]:hover {
    background-color: var(--dwv-accent);
}

/* ============================================
   WOOCOMMERCE PRODUCT CARDS
   ============================================ */
.woocommerce ul.products li.product {
    border-radius: var(--dwv-radius-lg);
    overflow: hidden;
    box-shadow: var(--dwv-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--dwv-border);
}
.woocommerce ul.products li.product:hover {
    box-shadow: var(--dwv-shadow-hover);
    transform: translateY(-4px);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dwv-secondary);
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    background: var(--dwv-primary);
    border-radius: var(--dwv-radius);
    font-weight: 600;
}
.woocommerce ul.products li.product .button:hover {
    background: var(--dwv-accent);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.woocommerce .woocommerce-breadcrumb,
.unita-breadcrumb {
    font-size: 13px;
    color: var(--dwv-text-light);
    padding: 15px 0;
}
.woocommerce .woocommerce-breadcrumb a,
.unita-breadcrumb a {
    color: var(--dwv-primary);
}

/* ============================================
   PAGINATION
   ============================================ */
.page-numbers:not(ul) {
    border-radius: var(--dwv-radius);
}
.page-numbers:not(ul).current,
.page-numbers:not(ul):hover {
    background-color: var(--dwv-primary);
    color: #fff;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.unita-mobile-nav {
    background: #fff;
}
.mobile-navigation ul > li.menu-item > a {
    color: var(--dwv-secondary);
    font-weight: 600;
    border-bottom-color: var(--dwv-border);
}
.mobile-navigation ul > li.menu-item:hover > a {
    color: var(--dwv-primary);
    background: none;
    -webkit-text-fill-color: var(--dwv-primary);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.dwv-bg-primary { background-color: var(--dwv-primary); }
.dwv-bg-secondary { background-color: var(--dwv-secondary); }
.dwv-bg-accent { background-color: var(--dwv-accent); }
.dwv-bg-highlight { background-color: var(--dwv-highlight); }
.dwv-bg-white { background-color: #fff; }
.dwv-text-primary { color: var(--dwv-primary); }
.dwv-text-secondary { color: var(--dwv-secondary); }
.dwv-text-accent { color: var(--dwv-accent); }
.dwv-text-white { color: #fff; }
.dwv-gradient-bg { background: var(--dwv-gradient); }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
    .dwv-hero {
        min-height: 400px;
    }
    .dwv-hero h1 {
        font-size: 2rem;
    }
    .dwv-categories-section,
    .dwv-about-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .dwv-hero {
        min-height: 350px;
        text-align: center;
    }
    .dwv-hero .dwv-hero-content {
        max-width: 100%;
    }
    .dwv-hero .dwv-hero-btns {
        justify-content: center;
    }
    .dwv-section-header h2 {
        font-size: 1.75rem;
    }
    .dwv-categories-section,
    .dwv-about-section,
    .dwv-cta-section {
        padding: 50px 0;
    }
    .dwv-footer {
        padding: 40px 0 0;
        text-align: center;
    }
    .dwv-footer h3 {
        margin-top: 20px;
    }
}

/* ============================================
   ELEMENTOR TEMPLATE CANVAS OVERRIDES
   ============================================ */
body.elementor-template-canvas {
    background: #fff;
}

/* Fix for Elementor page builder compatibility */
.elementor-page .site-content {
    margin-top: 0;
    margin-bottom: 0;
}

/* Elementor section padding defaults */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: var(--container-max-width);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .dwv-top-bar,
    .site-header,
    .dwv-footer,
    .scrollup {
        display: none;
    }
}
