/* ===================================
   JRPartners - Digital White Cube Design
   Industrial Meets Artistic Minimalism
   ================================== */

/* CSS Variables - Clean & Industrial */
:root {
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #4A4A4A;
    --charcoal: #2C2C2C;
    --black: #1A1A1A;
    --accent: #FF6B35;
    --accent-light: #FF8C5A;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Mobile Touch & Tap Target Enhancements */
button,
a,
input,
select,
textarea,
.nav-link,
.btn,
.filter-btn,
.service-card,
.nav-toggle,
.faq-question {
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
    touch-action: manipulation;
}

/* Minimum tap target sizes for mobile accessibility */
.btn,
.nav-link,
.filter-btn,
button[type="submit"],
.nav-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Ensure form inputs are at least 16px to prevent iOS zoom */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
textarea,
select {
    font-size: 16px !important;
}

/* Better touch scrolling */
.nav-menu,
.service-detail,
.faq-section {
    -webkit-overflow-scrolling: touch;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Inline Text Links - SEO & UX */
p a,
.intro-text a,
.about-text a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(255, 107, 53, 0.3);
    text-underline-offset: 3px;
    font-weight: 600;
}

p a:hover,
.intro-text a:hover,
.about-text a:hover {
    color: var(--accent-light);
    text-decoration-color: var(--accent);
}

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-category {
    background: var(--white);
    border-radius: 0;
    padding: 80px 0;
    margin-bottom: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
}

.faq-category:last-of-type {
    border-bottom: none;
}

.faq-category .section-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.faq-subcategory {
    font-size: 24px;
    color: var(--black);
    margin: 50px auto 30px;
    font-weight: 700;
    max-width: 1200px;
    padding: 0 40px;
}

.faq-item {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 40px 40px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-answer {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 16px;
}

.faq-answer p {
    margin-bottom: 20px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 20px 0;
    padding-left: 30px;
}

.faq-answer li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--black);
    font-weight: 700;
}

.faq-cta {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 100px 40px;
    border-radius: 0;
    margin-top: 0;
}

.faq-cta h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 48px;
    border-radius: 0;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

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

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .faq-category {
        padding: 60px 0;
    }
    
    .faq-category .section-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .faq-subcategory {
        font-size: 20px;
        padding: 0 20px;
        margin: 40px auto 20px;
    }
    
    .faq-item {
        padding: 0 20px 30px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .faq-answer {
        font-size: 15px;
    }
    
    .faq-cta {
        padding: 60px 20px;
    }
    
    .faq-cta h2 {
        font-size: 32px;
    }
    
    .faq-cta p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* ===================================
   Navigation - Minimal & Clean
   ================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--medium-gray);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.logo-mark {
    color: var(--black);
    font-weight: 900;
}

.logo-text {
    color: var(--dark-gray);
    font-weight: 400;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

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

.nav-link {
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--black);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.nav-cta {
    background: var(--black);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Breadcrumb Navigation - SEO & UX
   ================================== */
.breadcrumb {
    background: var(--light-gray);
    padding: 12px 0;
    margin-top: 88px;
    border-bottom: 1px solid var(--medium-gray);
}

.breadcrumb .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 300;
}

.breadcrumb a {
    color: var(--dark-gray);
    transition: var(--transition);
    font-weight: 500;
}

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

.breadcrumb li:last-child span {
    color: var(--charcoal);
    font-weight: 600;
}

/* ===================================
   Hero - Clean & Impactful
   ================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    background: var(--white);
    padding: 120px 0;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-video {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--black);
    max-width: 900px;
}

.accent-text {
    color: var(--accent);
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 48px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===================================
   Buttons - Clean & Modern
   ================================== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

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

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

.btn-light {
    background: var(--white);
    color: var(--black);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
}

/* ===================================
   Stats Section - Minimal Grid
   ================================== */
.stats-section {
    padding: 100px 0;
    background: var(--off-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--medium-gray);
}

.stat-item {
    background: var(--white);
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--off-white);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-gray);
}

/* ===================================
   Section Headers
   ================================== */
.section-header {
    margin-bottom: 80px;
}

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 24px;
}

.title-accent {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin-top: 24px;
}

.section-header.center .title-accent {
    margin: 24px auto 0;
}

/* ===================================
   Intro Section
   ================================== */
.intro-section {
    padding: 140px 0;
    background: var(--white);
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 32px;
    text-align: center;
}

/* ===================================
   Services Section - Card Grid
   ================================== */
.services-section {
    padding: 140px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--medium-gray);
}

.service-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.service-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--light-gray);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.service-content {
    padding: 36px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.service-website {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.service-website:hover {
    color: var(--accent-light);
}

/* ===================================
   Process Section - Timeline
   ================================== */
.process-section {
    padding: 140px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 80px;
}

.process-step {
    position: relative;
    padding-left: 60px;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border: 2px solid var(--accent);
    border-radius: 50%;
    transition: var(--transition);
}

.process-step:hover::before {
    background: var(--accent);
    transform: scale(1.1);
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* ===================================
   CTA Section - Bold Statement
   ================================== */
.cta-section {
    position: relative;
    padding: 140px 0;
    background: var(--black);
    color: var(--white);
}

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

.cta-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

/* ===================================
   Footer - Clean & Organized
   ================================== */
.footer {
    background: var(--black);
    padding: 80px 0 40px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 20px;
}

.footer-logo .logo-mark {
    color: var(--accent);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 320px;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-faq-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition: var(--transition);
}

.footer-faq-link:hover {
    color: var(--accent);
}

/* ===================================
   Page Hero - Minimal Header
   ================================== */
.page-hero {
    padding: 200px 0 120px;
    background: var(--white);
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
}

.page-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
}

/* ===================================
   Service Detail Pages
   ================================== */
.service-detail {
    padding: 120px 0;
    background: var(--white);
}

.service-detail.alternate {
    background: var(--off-white);
}

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

.service-detail-image {
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail:hover .service-detail-image img {
    transform: scale(1.02);
}

.service-detail-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 32px;
}

.service-features {
    list-style: none;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-features li {
    font-size: 15px;
    color: var(--dark-gray);
    padding: 16px 20px;
    background: var(--off-white);
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.service-features li:hover {
    background: var(--white);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Portfolio Section with Filters
   ================================== */
.portfolio-section {
    padding: 120px 0;
    background: var(--white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 80px;
    flex-wrap: nowrap;
}

.filter-btn {
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 1;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--medium-gray);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--white);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

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

/* ===================================
   Contact Page
   ================================== */
.contact-section {
    padding: 120px 0;
    background: var(--white);
}

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

.contact-info-item {
    margin-bottom: 48px;
}

.contact-info-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
}

.contact-info-text {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.contact-info-text a {
    color: var(--accent);
}

.contact-form {
    background: var(--off-white);
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    color: var(--charcoal);
    font-family: var(--font-main);
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

/* ===================================
   Testimonials Section
   ================================== */
.testimonials-section {
    padding: 120px 0;
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.testimonial-rating {
    margin-bottom: 24px;
}

.testimonial-rating .star {
    color: var(--accent);
    font-size: 20px;
    margin-right: 4px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 24px;
    border-top: 1px solid var(--medium-gray);
}

.testimonial-author strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ===================================
   Work Process Section - Professional
   ================================== */
.work-process-section {
    padding: 140px 0;
    background: var(--white);
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.process-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-top: 32px;
}

.process-methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.methodology-phase {
    background: var(--white);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.methodology-phase:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.phase-header {
    background: var(--off-white);
    padding: 32px;
    border-bottom: 3px solid var(--accent);
}

.phase-number-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.phase-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
}

.phase-subtitle {
    font-size: 15px;
    color: var(--dark-gray);
    font-style: italic;
    margin: 0;
}

.phase-body {
    padding: 32px;
    flex-grow: 1;
    background: var(--white);
}

.phase-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 24px;
    font-weight: 500;
}

.phase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phase-list li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.phase-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.phase-list li strong {
    display: block;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
    font-size: 15px;
}

.process-closing {
    text-align: center;
    margin-top: 80px;
    padding: 48px;
    background: var(--off-white);
    border-top: 3px solid var(--accent);
}

.closing-statement {
    font-size: 20px;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.closing-statement strong {
    color: var(--black);
    font-weight: 700;
}

/* ===================================
   About Page
   ================================== */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 120px;
}

.about-image {
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.about-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

/* ===================================
   Policy Pages Styles
   ================================== */
.policy-section {
    padding: 80px 0;
    background: var(--white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--dark-gray);
}

.policy-intro {
    margin-bottom: 48px;
    padding: 32px;
    background: var(--off-white);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.policy-intro p {
    margin-bottom: 16px;
}

.policy-intro p:last-child {
    margin-bottom: 0;
}

.policy-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 56px;
    margin-bottom: 24px;
    color: var(--black);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
}

.policy-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--black);
}

.policy-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--black);
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul {
    margin: 16px 0 24px 24px;
    list-style-type: disc;
}

.policy-content ul li {
    margin-bottom: 10px;
    padding-left: 8px;
}

.policy-content ol {
    margin: 16px 0 24px 24px;
    list-style-type: decimal;
}

.policy-content ol li {
    margin-bottom: 10px;
    padding-left: 8px;
}

.policy-content a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-content strong {
    font-weight: 600;
    color: var(--black);
}

.contact-box {
    background: var(--off-white);
    padding: 32px;
    border-radius: 4px;
    margin: 32px 0;
    border-left: 4px solid var(--accent);
}

.contact-box p {
    margin-bottom: 12px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.policy-footer-note {
    margin-top: 56px;
    padding: 24px 32px;
    background: var(--light-gray);
    border-radius: 4px;
    font-size: 14px;
}

.policy-footer-note em {
    font-style: italic;
}

/* ===================================
   Responsive Design
   ================================== */

@media (max-width: 1200px) {
    .container,
    .nav-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 32px;
        align-items: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        text-align: center;
    }
    
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 80px 0 0 0;
    }
    
    .hero-content {
        padding: 0 24px 60px 24px;
        text-align: center;
    }
    
    .hero-video {
        min-height: 400px;
        order: -1;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .page-title {
        font-size: 48px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .page-hero {
        padding: 120px 0 80px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .intro-section {
        padding: 80px 0;
        text-align: center;
    }
    
    .intro-text {
        font-size: 18px;
    }
    
    .service-card {
        text-align: center;
    }

    .service-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .service-website {
        justify-content: center;
    }
    
    .process-step {
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .services-grid,
    .stats-grid,
    .process-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Work Process Responsive - Tablet */
    .work-process-section {
        padding: 80px 0;
    }
    
    .process-header {
        margin-bottom: 60px;
    }
    
    .process-methodology-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .phase-header {
        padding: 24px;
    }
    
    .phase-body {
        padding: 24px;
    }
    
    .phase-title {
        font-size: 22px;
    }
    
    .process-closing {
        margin-top: 60px;
        padding: 32px 24px;
    }
    
    .closing-statement {
        font-size: 18px;
    }
    
    .portfolio-filters {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
    }
    
    .filter-btn {
        min-width: auto;
        flex: 1 1 calc(50% - 4px);
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Footer - 2 Column Layout */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-col:first-child .footer-logo {
        justify-content: center;
    }
    
    .footer-col:first-child .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .contact-form {
        padding: 40px;
    }
    
    /* Center align buttons and CTAs on mobile */
    .hero-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .btn {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    /* Work Process Mobile */
    .phase-header {
        padding: 20px;
    }
    
    .phase-body {
        padding: 20px;
    }
    
    .phase-title {
        font-size: 20px;
    }
    
    .phase-intro {
        font-size: 15px;
    }
    
    .phase-list li {
        font-size: 14px;
    }
    
    .phase-list li strong {
        font-size: 14px;
    }
    
    .closing-statement {
        font-size: 16px;
    }


    
    .contact-form {
        padding: 32px 24px;
    }
    
    /* Single column footer for very small screens */
    .footer {
        padding: 50px 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col:first-child {
        padding-bottom: 24px;
        margin-bottom: 8px;
    }
    
    .footer-title {
        margin-bottom: 20px;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links li,
    .footer-contact li {
        margin-bottom: 12px;
    }
    
    .footer-bottom {
        padding-top: 24px;
    }
}

/* Load Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');
