/*
Theme Name: Freescale Coaching
Theme URI: https://freescalecoaching.com
Author: Freescale Coaching Systems
Author URI: https://freescalecoaching.com
Description: A modern, professional coaching theme for Freescale Coaching Systems. Designed for CEO and leadership team coaching focused on middle market business growth.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: freescale-coaching
Tags: business, coaching, professional, responsive
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    background: #ffffff;
}

a {
    color: #29abe2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a7db5;
}

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

ul {
    list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1a2e4a;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1.2rem;
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-accent { color: #29abe2; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

.section-dark {
    background: #1a2e4a;
    color: #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #ffffff;
}

.section-gray {
    background: #f5f7fa;
}

.section-accent {
    background: #29abe2;
    color: #ffffff;
}

.section-accent h1,
.section-accent h2,
.section-accent h3 {
    color: #ffffff;
}

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

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

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

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

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #29abe2;
    color: #ffffff;
    border-color: #29abe2;
}

.btn-primary:hover {
    background: #1a7db5;
    border-color: #1a7db5;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #1a2e4a;
}

.btn-dark {
    background: #1a2e4a;
    color: #ffffff;
    border-color: #1a2e4a;
}

.btn-dark:hover {
    background: #0f1e33;
    border-color: #0f1e33;
    color: #ffffff;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.site-logo a {
    display: block;
}

/* Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav ul li a {
    display: block;
    padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1a2e4a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current_page_item > a {
    color: #29abe2;
    background: rgba(41, 171, 226, 0.08);
}

.main-nav ul li.menu-cta a {
    background: #29abe2;
    color: #ffffff;
    padding: 10px 20px;
}

.main-nav ul li.menu-cta a:hover {
    background: #1a7db5;
    color: #ffffff;
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1a2e4a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2e4a 0%, #0d4f7a 50%, #29abe2 100%);
    padding-top: 90px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

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

.hero-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #29abe2;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero (inner pages) */
.page-hero {
    background: linear-gradient(135deg, #1a2e4a 0%, #0d4f7a 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: #29abe2;
}

/* ============================================================
   FEATURE CARDS (Homepage)
   ============================================================ */
.feature-cards {
    padding: 70px 0;
    background: #f5f7fa;
}

.feature-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #29abe2, #1a7db5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card-icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.feature-card h3 {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a2e4a;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.feature-card a.card-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #29abe2;
    border-bottom: 2px solid #29abe2;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.feature-card a.card-link:hover {
    color: #1a2e4a;
    border-color: #1a2e4a;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.intro-section .section-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #29abe2;
    margin-bottom: 15px;
}

.intro-section h2 {
    font-size: 2.4rem;
    color: #1a2e4a;
    margin-bottom: 20px;
    max-width: 700px;
}

.intro-section p {
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
    margin-bottom: 30px;
}

/* ============================================================
   SUCCESS STORIES BLOG SECTION
   ============================================================ */
.stories-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.stories-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.stories-section .section-header h2 {
    font-size: 2rem;
    color: #1a2e4a;
    margin-bottom: 10px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.story-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.story-card-body {
    padding: 25px;
}

.story-card-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.story-card h3 {
    font-size: 1rem;
    color: #1a2e4a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.story-card h3 a {
    color: #1a2e4a;
}

.story-card h3 a:hover {
    color: #29abe2;
}

.story-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.story-card .read-more {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #29abe2;
}

.story-card .read-more:hover {
    color: #1a2e4a;
}

.stories-cta {
    text-align: center;
}

/* ============================================================
   TIME WELL SPENT / PROCESS SECTION
   ============================================================ */
.process-overview {
    padding: 80px 0;
    background: #1a2e4a;
    color: #ffffff;
}

.process-overview h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.process-overview .accent-text {
    color: #29abe2;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 25px;
}

.process-overview p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 15px;
}

.process-overview .highlight {
    color: #29abe2;
    font-weight: 700;
}

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

.process-steps-visual {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.process-step-bar .step-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    min-width: 180px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    overflow: hidden;
}

.step-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #29abe2, #1a7db5);
    border-radius: 4px;
    transition: width 1.5s ease;
}

.step-bar-pct {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #29abe2;
    min-width: 40px;
    text-align: right;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section .section-header h2 {
    font-size: 2rem;
    color: #1a2e4a;
}

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

.testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    position: relative;
    border-top: 4px solid #29abe2;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: #29abe2;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #1a2e4a;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #29abe2;
}

/* ============================================================
   WHY FREESCALE PAGE
   ============================================================ */
.why-intro {
    padding: 80px 0;
    text-align: center;
    background: #ffffff;
}

.why-intro h2 {
    font-size: 2.2rem;
    color: #1a2e4a;
    margin-bottom: 25px;
}

.why-intro p {
    max-width: 750px;
    margin: 0 auto 20px;
    font-size: 1.05rem;
    color: #555;
}

.what-makes-different {
    padding: 80px 0;
    background: #f5f7fa;
}

.what-makes-different .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.what-makes-different .section-header h2 {
    font-size: 2rem;
    color: #1a2e4a;
}

.difference-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-5px);
}

.difference-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #29abe2, #1a7db5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.difference-icon svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.difference-card h3 {
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #29abe2;
    margin-bottom: 12px;
}

.difference-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Drive Your Vision */
.drive-vision {
    padding: 80px 0;
    background: #1a2e4a;
    color: #ffffff;
}

.drive-vision h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.drive-vision p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 700px;
    margin-bottom: 15px;
}

.drive-vision .highlight-stat {
    font-size: 1.1rem;
    color: #29abe2;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Skills / Progress Bars */
.skills-section {
    padding: 80px 0;
    background: #ffffff;
}

.skills-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a2e4a;
    margin-bottom: 50px;
}

.skill-bar {
    margin-bottom: 30px;
}

.skill-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-bar-header span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a2e4a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-bar-header .pct {
    color: #29abe2;
}

.skill-track {
    height: 10px;
    background: #e8edf2;
    border-radius: 5px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #29abe2, #1a7db5);
    border-radius: 5px;
    transition: width 1.5s ease;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-section .section-header h2 {
    font-size: 2rem;
    color: #1a2e4a;
}

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

.team-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    text-align: center;
    padding: 40px 25px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #29abe2, #1a2e4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.team-card h3 {
    font-size: 1.1rem;
    color: #1a2e4a;
    margin-bottom: 5px;
}

.team-card .role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #29abe2;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 0.9rem;
    color: #666;
}

/* ============================================================
   FREESCALE PROCESS PAGE
   ============================================================ */
.process-intro {
    padding: 80px 0;
    text-align: center;
    background: #ffffff;
}

.process-intro h2 {
    font-size: 2.2rem;
    color: #1a2e4a;
    margin-bottom: 20px;
}

.process-intro p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #555;
}

.process-modules {
    padding: 80px 0;
    background: #f5f7fa;
}

.process-modules .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-modules .section-header h2 {
    font-size: 2rem;
    color: #1a2e4a;
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.module-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: flex-start;
    padding: 35px 40px;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.module-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #29abe2, #1a7db5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.module-content h3 {
    font-size: 1.1rem;
    color: #1a2e4a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #29abe2, #1a7db5);
    text-align: center;
    color: #ffffff;
}

.cta-banner h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ============================================================
   SUCCESS STORIES PAGE
   ============================================================ */
.stories-archive {
    padding: 80px 0;
    background: #ffffff;
}

.stories-archive-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.stories-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #e8edf2;
}

.story-item:last-child {
    border-bottom: none;
}

.story-item-meta {
    font-size: 0.82rem;
    color: #999;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-item h2 {
    font-size: 1.3rem;
    color: #1a2e4a;
    margin-bottom: 10px;
}

.story-item h2 a {
    color: #1a2e4a;
    transition: color 0.3s;
}

.story-item h2 a:hover {
    color: #29abe2;
}

.story-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.story-item .read-more {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #29abe2;
    border-bottom: 2px solid #29abe2;
    padding-bottom: 2px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #f5f7fa;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 1rem;
    color: #1a2e4a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #29abe2;
}

.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e6ed;
    font-size: 0.9rem;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: #555;
}

.sidebar-widget ul li a:hover {
    color: #29abe2;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.contact-info h2 {
    font-size: 2rem;
    color: #1a2e4a;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #29abe2, #1a7db5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.contact-detail-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #29abe2;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

.contact-detail-text a {
    color: #555;
}

.contact-detail-text a:hover {
    color: #29abe2;
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: #1a2e4a;
    margin-bottom: 25px;
}

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

.contact-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a2e4a;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #29abe2;
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

.contact-form .form-submit {
    margin-top: 10px;
}

.contact-form .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: #1a2e4a;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    height: 50px;
    width: auto;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #29abe2;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: #29abe2;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.65);
}

.footer-contact-item a:hover {
    color: #29abe2;
}

.footer-certified {
    margin-top: 15px;
}

.footer-certified img {
    height: 60px;
    width: auto;
    opacity: 0.85;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-content {
    padding: 80px 0;
}

.single-post-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.post-article h1 {
    font-size: 2rem;
    color: #1a2e4a;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 0.85rem;
    color: #999;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8edf2;
}

.post-body {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

.post-body p { margin-bottom: 1.2rem; }
.post-body h2 { color: #1a2e4a; margin: 30px 0 15px; }
.post-body h3 { color: #1a2e4a; margin: 25px 0 12px; }

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero h1 { font-size: 2.2rem; }
    .section { padding: 50px 0; }

    .menu-toggle { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 5px;
    }

    .main-nav ul li a {
        padding: 12px 16px;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .stories-grid, .testimonials-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid, .stories-archive-grid, .single-post-grid {
        grid-template-columns: 1fr;
    }

    .process-overview-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .module-item {
        grid-template-columns: 60px 1fr;
        padding: 25px 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero h1 { font-size: 1.8rem; }
    .btn { padding: 12px 24px; font-size: 0.82rem; }
}

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');
