/* ===================
   CSS Variables
   =================== */
:root {
    --primary-color: #1a365d;      /* Navy blue from logo */
    --secondary-color: #2c5282;    /* Lighter navy */
    --accent-color: #3182ce;       /* Bright blue for buttons */
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-dark: #1a365d;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ===================
   Reset & Base
   =================== */
* {
    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-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* ===================
   Buttons
   =================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

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

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

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* ===================
   Header (Overlay on Hero)
   =================== */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    z-index: 1000;
    background: transparent;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 30px 0 0;
}

.logo {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    margin-left: 25px;
}

.logo img {
    height: 200px;
    width: auto;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    transition: color 0.3s ease;
    padding: 5px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
}

.main-header .btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 28px;
}

/* ===================
   Hero Section
   =================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color);
}

/* Home page hero - shorter since header is separate */
.hero-home {
    min-height: 80vh;
    padding: 60px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 82, 130, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 22px;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Certification Badges */
.certifications {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.cert-badge-img {
    height: 140px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    background: var(--white);
    padding: 15px;
}

.cert-badge-styled {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 25px 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    min-width: 140px;
}

.cert-icon-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.cert-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 8px;
    line-height: 1.4;
}

.sba-badge {
    border-top: 4px solid var(--primary-color);
}

.hubzone-badge {
    border-top: 4px solid #c41e3a;
}

.hubzone-badge .cert-icon-text {
    color: #c41e3a;
}

/* SDVOSB Badge */
.cert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: white;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 8px;
    border: 3px solid #c41e3a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.sdvosb-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: white;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    padding: 25px 30px;
    border-radius: 8px;
    border: 3px solid #c41e3a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    min-width: 140px;
}

.sdvosb-badge::after {
    content: 'Veteran-Owned';
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.9;
}

.sdvosb-badge-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: white;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 6px;
    border: 2px solid #c41e3a;
    height: 80px;
}

/* ===================
   Services Preview
   =================== */
.services-preview {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ===================
   Why Choose Us
   =================== */
.why-us {
    padding: 80px 20px;
    text-align: center;
}

.why-us h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.feature h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-light);
    font-size: 16px;
}

/* ===================
   CTA Section
   =================== */
.cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: var(--bg-light);
}

/* ===================
   Footer
   =================== */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* ===================
   Solid Header (for inner pages)
   =================== */
.header-solid {
    position: relative;
    background: var(--white);
    padding: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-solid .container {
    max-width: 1200px;
    padding: 0 30px;
}

.header-solid .logo {
    background: transparent;
    padding: 0;
    margin-left: 0;
}

.header-solid .logo img {
    height: 90px;
}

.header-solid .main-nav a {
    color: var(--primary-color);
}

.header-solid .main-nav a:hover,
.header-solid .main-nav a.active {
    color: var(--accent-color);
}

.header-solid .main-nav {
    position: relative;
    left: auto;
    transform: none;
}

.header-solid .main-nav a {
    text-shadow: none;
}

/* ===================
   Dropdown Menu
   =================== */
.has-dropdown {
    position: relative;
}

.has-dropdown > a::after {
    content: ' ▾';
    font-size: 10px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 220px;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown li {
    display: block;
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color) !important;
    font-size: 14px !important;
    text-shadow: none !important;
    transition: background 0.2s ease;
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--accent-color) !important;
}

/* ===================
   Page Hero
   =================== */
.page-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(44, 82, 130, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Portfolio Hero with custom image */
.page-hero.portfolio-hero {
    background-image: url('../images/portfolio-hero.jpg');
}

/* ===================
   About Story Section
   =================== */
.about-story {
    padding: 80px 20px;
}

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

.story-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ===================
   Founder Section
   =================== */
.founder-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-placeholder {
    width: 250px;
    height: 250px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.founder-placeholder span {
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

.founder-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.founder-content h3 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.founder-title {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

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

.founder-credentials {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.credential {
    text-align: center;
}

.credential-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.credential-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================
   Differentiators Section
   =================== */
.differentiators {
    padding: 80px 20px;
}

.differentiators h2 {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

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

.diff-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent-color);
}

.diff-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.diff-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================
   Certifications Section
   =================== */
.certifications-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.certifications-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.cert-item {
    text-align: center;
    max-width: 250px;
}

.cert-item img {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cert-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cert-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.company-data {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.data-item {
    text-align: center;
}

.data-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.data-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* ===================
   Services Page
   =================== */
.services-intro {
    padding: 60px 20px;
    text-align: center;
    background: var(--bg-light);
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 900px;
    margin: 0 auto;
}

.service-detail {
    padding: 80px 20px;
}

.service-detail.alt-bg {
    background: var(--bg-light);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.service-grid.reverse {
    grid-template-columns: 300px 1fr;
}

.service-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-color);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

/* Service Images (replacing placeholders) */
.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.service-grid.reverse {
    grid-template-columns: 400px 1fr;
}

/* Industries Served */
.industries-served {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.industries-served h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.industry-item {
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.industry-item:hover {
    background: rgba(255,255,255,0.15);
}

.industry-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.industry-item p {
    font-size: 13px;
    opacity: 0.8;
}

/* ===================
   Portfolio Page
   =================== */
.portfolio-intro {
    padding: 60px 20px;
    text-align: center;
    background: var(--bg-light);
}

.portfolio-grid-section {
    padding: 60px 20px;
}

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

.portfolio-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.portfolio-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    opacity: 0.7;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.portfolio-category {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.portfolio-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Portfolio Stats */
.portfolio-stats {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.stat-item {
    padding: 30px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================
   Contact Page
   =================== */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 35px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method h4 {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-method p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-method a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-method a:hover {
    color: var(--accent-color);
}

.contact-certifications h4 {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cert-badges {
    display: flex;
    gap: 20px;
}

.cert-badges img {
    height: 80px;
    width: auto;
    background: var(--white);
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* ===================
   Responsive
   =================== */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .main-header .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Fix certification badges on mobile */
    .certifications {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 15px;
    }

    .cert-badge-img {
        height: 80px;
        padding: 10px;
    }

    .main-nav ul {
        gap: 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .services-preview h2,
    .why-us h2,
    .cta h2 {
        font-size: 28px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    /* Footer fixes for mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        text-align: center;
    }

    /* Hero content on mobile */
    .hero-content {
        padding: 0 15px;
    }
}
