/* ===================================
   SUREFIRE IT CONSULTING - MAIN STYLES
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --primary-blue: #00A8E8;
    --dark-gray: #2C3E50;
    --medium-gray: #5A6C7D;
    --light-gray: #ECF0F1;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-gray);
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--text-medium); }

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--primary-orange); }

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

.btn-nav {
    background: var(--primary-orange);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-nav:hover {
    background: #E85A2B;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: 0.3s;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active { left: 0; }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #E85A2B;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, #FF6B35 0%, #00A8E8 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

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

@media (max-width: 768px) {
    .hero { padding: 4rem 0; }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

/* ===================================
   PAGE HERO
   =================================== */
.page-hero {
    background: linear-gradient(135deg, #00A8E8 0%, #FF6B35 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
}

/* ===================================
   SECTIONS
   =================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 3rem;
}

/* ===================================
   VALUE PROPOSITION
   =================================== */
.value-prop {
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

/* ===================================
   INVESTMENT AREAS
   =================================== */
.investment-areas {
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.area-card {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.area-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.area-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* ===================================
   ENGAGEMENT MODEL
   =================================== */
.engagement-model {
    background: var(--light-gray);
}

.engagement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.engagement-list {
    list-style: none;
    margin: 2rem 0;
}

.engagement-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

.engagement-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.engagement-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .engagement-content { grid-template-columns: 1fr; }
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===================================
   SERVICES PAGE
   =================================== */
.services-intro {
    background: var(--white);
    padding: 3rem 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-detail {
    padding: 5rem 0;
}

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

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail.alt .service-content {
    grid-template-columns: 1fr 2fr;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

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

.icon-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 968px) {
    .service-content,
    .service-detail.alt .service-content {
        grid-template-columns: 1fr;
    }
    
    .icon-circle {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
}

.multi-project {
    background: var(--white);
    text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

/* ===================================
   ABOUT PAGE
   =================================== */
.about-intro {
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 2rem;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.detail-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.market-gap {
    background: var(--light-gray);
}

.gap-content {
    max-width: 1000px;
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.capability-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.closing-statement {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 2rem;
}

.philosophy {
    background: var(--white);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.principles-list {
    margin: 3rem 0;
}

.principle-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.principle-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    min-width: 60px;
}

.principle-content h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.emphasis {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 2rem;
}

.role-flexibility {
    background: var(--light-gray);
}

.flexibility-content {
    max-width: 1000px;
    margin: 0 auto;
}

.engagement-models,
.scope-evolution,
.future-capabilities {
    margin: 3rem 0;
}

.engagement-models h3,
.scope-evolution h3,
.future-capabilities h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.model-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.model-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

.scope-list {
    list-style: none;
    margin: 1.5rem 0;
}

.scope-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.scope-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.future-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
}

.future-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.commitment {
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 1.5rem;
}

.compliance {
    background: var(--white);
}

.compliance-content {
    max-width: 900px;
    margin: 0 auto;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.compliance-item {
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
}

.compliance-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    min-width: 40px;
}

.contact-text h4 {
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.contact-text a {
    color: var(--primary-blue);
    font-weight: 500;
}

.areas-of-support {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.areas-of-support h3 {
    margin-bottom: 1rem;
}

.areas-of-support ul {
    list-style: none;
}

.areas-of-support li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.areas-of-support li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Contact Form */
.contact-form-container {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
}

.contact-form h3 {
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Engagement Info */
.engagement-info {
    background: var(--light-gray);
    text-align: center;
}

.expectation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expectation-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
}

.expectation-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    section { padding: 3rem 0; }
    
    .features-grid,
    .areas-grid,
    .capabilities-grid,
    .project-grid,
    .model-grid,
    .future-grid,
    .compliance-grid,
    .expectation-grid {
        grid-template-columns: 1fr;
    }
}
