/* ==================================================
IRON POST CONTINUITY
Professional Consulting Theme
================================================== */

:root {


--primary: #16385f;
--primary-dark: #102846;
--primary-light: #29517f;

--secondary: #c8a04d;

--text: #1f2937;
--text-light: #6b7280;

--background: #f5f7fa;
--surface: #ffffff;

--border: #e5e7eb;

--shadow:
    0 10px 30px rgba(0,0,0,.08);


}

/* ==================================================
RESET
================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {


font-family: 'Inter', sans-serif;

background: var(--background);

color: var(--text);

line-height: 1.7;


}

/* ==================================================
GLOBAL
================================================== */

.container {


width: 90%;
max-width: 1200px;
margin: auto;


}

section {
padding: 90px 0;
}

h1,
h2,
h3 {


line-height: 1.2;


}

h2 {


color: var(--primary);

font-size: 2.4rem;

margin-bottom: 20px;


}

p {


margin-bottom: 15px;


}

ul {


padding-left: 20px;


}

a {


text-decoration: none;


}

/* ==================================================
HEADER
================================================== */

header {


background: white;

position: sticky;

top: 0;

z-index: 1000;

box-shadow:
    0 2px 12px rgba(0,0,0,.05);


}

.nav-container {


display: flex;

align-items: center;

justify-content: space-between;

min-height: 90px;


}

.logo-container {


display: flex;

align-items: center;

gap: 15px;

color: inherit;


}

.logo {


width: 70px;
height: auto;


}

.logo-container h1 {


font-size: 1.5rem;

color: var(--primary);

margin: 0;


}

.logo-container p {


margin: 0;

color: var(--text-light);

font-size: .9rem;


}

nav ul {


display: flex;

list-style: none;

gap: 30px;


}

nav a {


color: var(--text);

font-weight: 600;

transition: .25s ease;


}

nav a:hover {


color: var(--secondary);


}

/* ==================================================
HERO SECTIONS
================================================== */

.hero,
.page-hero {


min-height: 550px;

display: flex;

align-items: center;

justify-content: center;

text-align: center;

position: relative;

overflow: hidden;

background-size: cover;
background-position: center;


}

.hero::before,
.page-hero::before {


content: "";

position: absolute;

inset: 0;

background:
    linear-gradient(
        rgba(16,40,70,.82),
        rgba(16,40,70,.58)
    );


}

.hero-content,
.page-hero .container {


position: relative;

z-index: 2;


}

.hero h2,
.page-hero h2 {


color: white;

font-size: 3.5rem;

margin-bottom: 25px;


}

.hero p,
.page-hero p {


color: rgba(255,255,255,.95);

max-width: 850px;

margin: auto;

font-size: 1.15rem;


}

/* ==================================================
HERO IMAGES
================================================== */

.home-hero {
background-image: url('../images/hero-bg.jpg');
}

.about-hero {
background-image: url('../images/about-hero.jpg');
}

.services-hero {
background-image: url('../images/services-hero.jpg');
}

.pricing-hero {
background-image: url('../images/pricing-hero.jpg');
}

.faq-hero {
background-image: url('../images/faq-hero.jpg');
}

.contact-hero {
background-image: url('../images/contact-hero.jpg');
}

/* ==========================================
   Founder Section
========================================== */

.founder-card {

    display: grid;

    grid-template-columns: 300px 1fr;

    gap: 40px;

    align-items: center;

    background: white;

    padding: 40px;

    border-radius: 16px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    max-width: 1100px;

    margin: auto;
}

.founder-image img {

    width: 100%;

    border-radius: 12px;

    display: block;

    box-shadow:
        0 10px 25px rgba(0,0,0,.15);
}

.founder-content h3 {

    color: var(--primary);

    font-size: 2rem;

    margin-bottom: 20px;
}

.founder-content p {

    margin-bottom: 15px;
}

.founder-title {

    color: var(--text-light);

    font-weight: 600;

    margin-bottom: 25px;
}

/* ==================================================
BUTTONS
================================================== */

.btn {


display: inline-block;

margin-top: 30px;

padding: 14px 28px;

background: var(--secondary);

color: white;

font-weight: 600;

border-radius: 10px;

transition: .3s ease;


}

.btn:hover {


transform: translateY(-3px);

opacity: .95;


}

/* ==================================================
TRUST BAR
================================================== */

.trust-bar {


background: white;

padding: 30px 0;

border-bottom: 1px solid var(--border);


}

.trust-grid {


display: grid;

grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

gap: 20px;

text-align: center;

font-weight: 600;

color: var(--primary);


}

/* ==================================================
SECTION STYLES
================================================== */

.section-light {


background: var(--background);


}

.section-dark {


background: #eef3f8;


}

.section-heading {


text-align: center;

margin-bottom: 50px;


}

.section-heading p {


max-width: 750px;

margin: auto;

color: var(--text-light);


}

/* ==================================================
TWO COLUMN GRID
================================================== */

.two-column-grid {


display: grid;

grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

gap: 40px;

align-items: start;


}

/* ==================================================
CARDS
================================================== */

.cards-grid {


display: grid;

grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

gap: 30px;


}

.card {


background: white;

padding: 35px;

border-radius: 16px;

border: 1px solid var(--border);

box-shadow: var(--shadow);

transition: .3s ease;


}

.card:hover {


transform: translateY(-6px);


}

.card h3 {


color: var(--primary);

margin-bottom: 15px;


}

.featured-card {


border: 2px solid var(--secondary);


}

/* ==================================================
PRICE
================================================== */

.price {


font-size: 2.4rem;

font-weight: 400;

color: var(--primary);

margin: 20px 0;


}

.price span {


font-size: 1rem;

color: var(--text-light);


}

/* ==================================================
FAQ
================================================== */

.faq-container {


max-width: 900px;

margin: auto;


}

.faq-item {


background: white;

margin-bottom: 15px;

border-radius: 12px;

overflow: hidden;

border: 1px solid var(--border);

box-shadow: var(--shadow);


}

.faq-item summary {


cursor: pointer;

padding: 22px;

font-weight: 600;

list-style: none;

position: relative;


}

.faq-item summary::-webkit-details-marker {
display: none;
}

.faq-item summary::after {


content: "+";

position: absolute;

right: 25px;

font-size: 1.5rem;


}

.faq-item[open] summary::after {
content: "−";
}

.faq-content {


padding: 0 22px 22px;


}

/* ==================================================
CONTACT
================================================== */

.contact-layout {


display: grid;

grid-template-columns:
    2fr 1fr;

gap: 40px;


}

.contact-form-card,
.contact-info-card {


background: white;

padding: 35px;

border-radius: 16px;

border: 1px solid var(--border);

box-shadow: var(--shadow);


}

.form-group {


margin-bottom: 20px;


}

.form-group label {


display: block;

margin-bottom: 8px;

font-weight: 600;


}

.contact-form input,
.contact-form select,
.contact-form textarea {


width: 100%;

padding: 14px;

border: 1px solid var(--border);

border-radius: 10px;

font-family: inherit;


}

.contact-form textarea {


resize: vertical;


}

.contact-item {


margin-bottom: 25px;


}

.privacy-note {


margin-top: 25px;

text-align: center;

color: var(--text-light);


}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #d8dde6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-option:hover {
    border-color: #b22222;
    background: #f8f9fa;
}

.service-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.service-option span {
    font-weight: 500;
}

.service-option:has(input:checked) {
    background: #fef2f2;
    border-color: #b22222;
}

.error-message {
    color: #b22222;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
}

/* ==================================================
FOOTER
================================================== */

footer {


background: #0f172a;

color: white;

text-align: center;

padding: 40px 0;


}

footer p {


margin: 0;


}

/* ==================================================
MOBILE
================================================== */

@media (max-width: 900px) {


.nav-container {

    flex-direction: column;

    padding: 20px 0;
}

nav ul {

    flex-wrap: wrap;

    justify-content: center;

    gap: 15px;
}

.contact-layout {

    grid-template-columns: 1fr;
}

.hero h2,
.page-hero h2 {

    font-size: 2.5rem;
}


}

@media (max-width: 768px) {


section {
    padding: 70px 0;
}

h2 {
    font-size: 2rem;
}

.hero h2,
.page-hero h2 {

    font-size: 2rem;
}

.cards-grid {

    grid-template-columns: 1fr;
}

.two-column-grid {

    grid-template-columns: 1fr;
}

.founder-card {

        grid-template-columns: 1fr;

        text-align: center;
    }

.founder-image {

        max-width: 250px;

        margin: auto;
    }

}
