/*
Theme Name: VDENT Digital Lab
Theme URI: https://vdent.example.com
Author: VDENT Digital Lab
Author URI: https://vdent.example.com
Description: A clean, modern WordPress theme for VDENT Digital Cosmetic Dental Laboratory. Fully built for the Elementor page builder with a teal & navy aesthetic, ready-made section templates for Home, About, Services, Pricing and Contact, plus a custom header/footer and reusable Elementor widgets style support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vdent
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, one-column, two-columns, right-sidebar, theme-options

VDENT Digital Lab WordPress Theme is released under the terms of GNU GPL v2 or later.
*/

/* ==========================================================================
   Base / Reset
   ========================================================================== */

:root {
	--vd-teal: #14b8a6;
	--vd-teal-dark: #0d9488;
	--vd-navy: #0b1424;
	--vd-navy-soft: #0f1b2d;
	--vd-bg-mint: #eaf6f4;
	--vd-bg-mint-2: #e4f3f1;
	--vd-text-dark: #10202c;
	--vd-text-body: #4b5d63;
	--vd-text-muted: #7c8c92;
	--vd-white: #ffffff;
	--vd-border: #d7e7e4;
	--vd-radius: 18px;
	--vd-radius-sm: 10px;
	--vd-shadow: 0 10px 30px rgba(11, 20, 36, 0.08);
	--vd-font-heading: 'Poppins', 'Segoe UI', sans-serif;
	--vd-font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--vd-font-body);
	color: var(--vd-text-body);
	background: var(--vd-white);
	line-height: 1.6;
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--vd-font-heading);
	color: var(--vd-text-dark);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.5em;
}

a { color: var(--vd-teal-dark); text-decoration: none; }
a:hover { color: var(--vd-teal); }

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

ul { margin: 0; padding: 0; }

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

/* ==========================================================================
   Buttons
   ========================================================================== */

.vd-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all .25s ease;
	font-family: var(--vd-font-body);
}

.vd-btn-primary {
	background: var(--vd-teal-dark);
	color: #fff;
}
.vd-btn-primary:hover { background: var(--vd-navy); color: #fff; transform: translateY(-2px); }

.vd-btn-outline {
	background: #fff;
	border-color: #e1e8e7;
	color: var(--vd-text-dark);
}
.vd-btn-outline:hover { border-color: var(--vd-teal-dark); color: var(--vd-teal-dark); }

.vd-btn-light {
	background: #fff;
	color: var(--vd-teal-dark);
}
.vd-btn-light:hover { background: var(--vd-navy); color: #fff; }

.vd-btn-ghost-light {
	background: transparent;
	border-color: rgba(255,255,255,.5);
	color: #fff;
}
.vd-btn-ghost-light:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ==========================================================================
   Site Header
   ========================================================================== */

.vd-site-header {
	background: #fff;
	border-bottom: 1px solid #eef2f1;
	position: sticky;
	top: 0;
	z-index: 999;
}

.vd-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	max-width: 1180px;
	margin: 0 auto;
}

.vd-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--vd-font-heading);
	font-weight: 700;
	font-size: 20px;
	color: var(--vd-text-dark);
}
.vd-logo img { max-height: 75px; width: auto;border-radius:8px; }
.vd-logo span.vd-logo-sub {
	display: block;
	font-size: 11px;
	font-weight: 400;
	color: var(--vd-text-muted);
	letter-spacing: .03em;
}

.vd-primary-nav ul {
	list-style: none;
	display: flex;
	gap: 32px;
	margin: 0;
	padding: 0;
}
.vd-primary-nav li { position: relative; }
.vd-primary-nav a {
	color: var(--vd-text-dark);
	font-weight: 500;
	font-size: 15px;
}
.vd-primary-nav a:hover,
.vd-primary-nav .current-menu-item > a { color: var(--vd-teal-dark); }

.vd-header-cta { display: flex; align-items: center; gap: 18px; }

.vd-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.vd-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--vd-text-dark);
	margin: 5px 0;
	transition: .25s;
}

@media (max-width: 900px) {
	.vd-primary-nav { 
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #fff;
		border-top: 1px solid #eef2f1;
		display: none;
		box-shadow: var(--vd-shadow);
	}
	.vd-primary-nav.is-open { display: block; }
	.vd-primary-nav ul { flex-direction: column; gap: 0; padding: 12px 24px; }
	.vd-primary-nav li { border-bottom: 1px solid #f2f5f4; }
	.vd-primary-nav a { display: block; padding: 14px 0; }
	.vd-menu-toggle { display: block; }
	.vd-header-cta .vd-btn-primary { display: none; }
}

/* ==========================================================================
   Generic Section Helpers (used by Elementor content + fallback templates)
   ========================================================================== */

.vd-section { padding: 90px 0; }
.vd-section-tight { padding: 60px 0; }
.vd-bg-mint { background: var(--vd-bg-mint); }
.vd-bg-navy { background: var(--vd-navy); color: #cfd8de; }
.vd-bg-navy h1, .vd-bg-navy h2, .vd-bg-navy h3 { color: #fff; }
.vd-bg-teal-grad {
	background: linear-gradient(120deg, var(--vd-teal) 0%, var(--vd-teal-dark) 100%);
	color: #e6fffb;
}
.vd-bg-teal-grad h2, .vd-bg-teal-grad h3 { color: #fff; }

.vd-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--vd-teal-dark);
	margin-bottom: 12px;
}
.vd-bg-navy .vd-eyebrow, .vd-bg-teal-grad .vd-eyebrow { color: #b9f3ea; }

.vd-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--vd-border);
	border-radius: 999px;
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 500;
	color: var(--vd-text-dark);
}

.vd-card {
	background: #fff;
	border-radius: var(--vd-radius);
	border: 1px solid #eef2f1;
	box-shadow: var(--vd-shadow);
	padding: 32px;
}

.vd-icon-box {
	width: 48px; height: 48px;
	border-radius: 12px;
	background: var(--vd-teal-dark);
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	margin-bottom: 16px;
}

.vd-grid { display: grid; gap: 28px; }
.vd-grid-2 { grid-template-columns: repeat(2, 1fr); }
.vd-grid-3 { grid-template-columns: repeat(3, 1fr); }
.vd-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
	.vd-grid-2, .vd-grid-3, .vd-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.vd-grid-2, .vd-grid-3, .vd-grid-4 { grid-template-columns: 1fr; }
	.vd-section { padding: 56px 0; }
}

/* Stats row */
.vd-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.vd-stat-num {
	font-family: var(--vd-font-heading);
	font-size: 34px;
	font-weight: 700;
	color: var(--vd-text-dark);
}
.vd-stat-label { font-size: 13px; color: var(--vd-text-muted); }

/* Logo / marquee strip */
.vd-strip {
	background: var(--vd-navy);
	color: #cfd8de;
	padding: 18px 0;
	font-size: 14px;
	text-align: center;
}
.vd-strip strong { color: #fff; }
.vd-strip .vd-strip-inner {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

/* Pricing table */
.vd-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border: 1px solid var(--vd-border);
	border-radius: var(--vd-radius-sm);
	padding: 20px 24px;
	margin-bottom: 16px;
}
.vd-price-row.is-featured { border-color: var(--vd-teal-dark); border-width: 2px; }
.vd-price-row h4 { margin: 0 0 4px; font-size: 17px; }
.vd-price-row .vd-price-sub { font-size: 13px; color: var(--vd-text-muted); }
.vd-price-row .vd-price-value { font-weight: 700; color: var(--vd-text-dark); text-align: right; }
.vd-price-row .vd-price-tag { font-size: 11px; text-transform: uppercase; color: var(--vd-text-muted); letter-spacing: .05em; }

/* Testimonials */
.vd-stars { color: #f5b700; letter-spacing: 2px; margin-bottom: 12px; }
.vd-testimonial p { font-style: italic; color: var(--vd-text-body); }
.vd-testimonial .vd-author { font-weight: 600; color: var(--vd-text-dark); margin-top: 14px; }
.vd-testimonial .vd-role { font-size: 13px; color: var(--vd-text-muted); }

/* Footer */
.vd-site-footer {
	background: var(--vd-bg-mint-2);
	padding: 60px 0 24px;
	color: var(--vd-text-body);
}
.vd-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.vd-footer-grid h4 { font-size: 15px; margin-bottom: 16px; }
.vd-footer-grid ul { list-style: none; }
.vd-footer-grid li { margin-bottom: 10px; font-size: 14px; }
.vd-footer-grid li a { color: var(--vd-text-body); }
.vd-footer-bottom {
	border-top: 1px solid #d3e6e2;
	padding-top: 20px;
	text-align: center;
	font-size: 13px;
	color: var(--vd-text-muted);
}
@media (max-width: 768px) {
	.vd-footer-grid { grid-template-columns: 1fr; }
}

/* Forms (Contact page fallback) */
.vd-form input,
.vd-form textarea,
.vd-form select {
	width: 100%;
	padding: 14px 16px;
	border-radius: var(--vd-radius-sm);
	border: 1px solid var(--vd-border);
	font-family: var(--vd-font-body);
	font-size: 14px;
	margin-bottom: 16px;
	background: #fff;
}
.vd-form label { font-size: 13px; font-weight: 600; color: var(--vd-text-dark); display: block; margin-bottom: 6px; }

/* WP core alignments / accessibility */
.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
	width: 1px; word-wrap: normal !important;
}
.alignfull { width: 100%; max-width: 100%; }
.alignwide { max-width: 1340px; margin-left: auto; margin-right: auto; }
