/* GhostWrite Pro - Main CSS */

/* CSS Variables - Pastel Color Palette */
:root {
    --primary-color: #8B7EE5;
    --primary-light: #A599F0;
    --primary-dark: #6F5FD9;
    --secondary-color: #F7C6C7;
    --secondary-light: #FADEDE;
    --secondary-dark: #F1A5A7;
    --accent-color: #B8E6B8;
    --accent-light: #D1F2D1;
    --accent-dark: #9FDD9F;
    --neutral-color: #E8E8E8;
    --neutral-light: #F5F5F5;
    --neutral-dark: #D1D1D1;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography - Conservative Font Sizes */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h3, h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
}

.shape-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 20px;
    opacity: 0.3;
    transform: rotate(45deg);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-content li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.service-content li:before {
    content: "✓";
    color: var(--accent-dark);
    font-weight: bold;
    margin-right: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-top: 1rem;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.5rem;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border: 2px solid var(--neutral-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Team Members */
.team-member {
    margin-bottom: 2rem;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-color);
}

/* Review Cards */
.review-card {
    border: none;
    box-shadow: 0 5px 15px var(--shadow);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

/* Case Study Cards */
.case-study-card {
    background: var(--accent-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-dark);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    background: var(--accent-color);
    transform: translateX(5px);
}

/* Process Steps */
.process-step {
    margin-bottom: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline Items */
.timeline-item {
    background: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: var(--neutral-color);
    transform: translateX(3px);
}

/* Career Cards */
.career-card {
    background: var(--white);
    border: 1px solid var(--neutral-color);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.career-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px var(--shadow);
}

.career-card span {
    display: inline-block;
    background: var(--secondary-light);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Info Cards */
.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.blog-content a:hover {
    color: var(--primary-dark);
}

/* FAQ Cards */
.faq-card {
    border: none;
    box-shadow: 0 3px 10px var(--shadow);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-card .card-body {
    padding: 1.5rem;
}

/* Gallery */
.gallery-image {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-control {
    border: 2px solid var(--neutral-color);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 126, 229, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
}

/* Footer */
footer {
    background-color: var(--text-dark) !important;
}

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

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

/* Breadcrumb */
.breadcrumb-section {
    background: var(--neutral-light);
    padding: 2rem 0;
}

.breadcrumb-image {
    max-width: 100%;
    height: auto;
}

/* Additional Page Specific Styles */
.strategy-item,
.seo-item,
.industry-item,
.content-type-item,
.qa-item,
.standard-item,
.metric-item,
.pm-item,
.tech-item,
.support-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.strategy-item:hover,
.seo-item:hover,
.industry-item:hover,
.content-type-item:hover,
.qa-item:hover,
.standard-item:hover,
.metric-item:hover,
.pm-item:hover,
.tech-item:hover,
.support-item:hover {
    transform: translateY(-3px);
}

/* Animations and Motion Queries */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Utility Classes */
.bg-light {
    background-color: var(--neutral-light) !important;
}

.shadow-sm {
    box-shadow: 0 2px 5px var(--shadow) !important;
}

/* Space Page Specific */
#space {
    min-height: 70vh;
    background: var(--neutral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.hero-section h1 {
    padding-top: 250px;
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
