/* 
Theme: CS2 Inventory Valuation
Version: 1.0
Description: Custom theme for CS2 Inventory Valuation service
*/

/* Base Styles & Variables */
:root {
    --primary-color: #5e35b1;
    --primary-light: #7e57c2;
    --primary-dark: #4527a0;
    --secondary-color: #00bcd4;
    --accent-color: #ff9800;
    --danger-color: #f44336;
    --success-color: #4caf50;
    --background-color: #f9f9fb;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #009688);
    --header-height: 80px;
    --section-padding: 80px 0;
    --container-width: 1200px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

html {
    font-size: 62.5%; /* 10px base size for easier rem calculations */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

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

ul, ol {
    list-style-position: inside;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-color);
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(94, 53, 177, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 16px rgba(94, 53, 177, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(94, 53, 177, 0.3);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 6px 16px rgba(0, 188, 212, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.3);
}

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

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

.btn-accept, .btn-customize, .btn-decline {
    padding: 0.8rem 1.6rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    outline: none;
    font-size: 1.4rem;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

.btn-customize {
    background-color: var(--text-light);
    color: white;
}

.btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
}

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

nav ul {
    display: flex;
    margin: 0;
}

nav ul li {
    list-style-type: none;
    margin: 0 1rem;
}

nav ul li a {
    display: block;
    padding: 1rem;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all var(--transition-speed) ease;
}

/* Hero Section */
.hero {
    padding: var(--section-padding);
    background: var(--background-color);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1.6rem;
}

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

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 6rem;
}

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

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: var(--primary-light);
    color: white;
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Latest Posts Section */
.latest-posts {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.view-all {
    font-weight: 500;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 3rem;
}

.post-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.post-image {
    position: relative;
    height: 22rem;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

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

.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.new-badge.large {
    font-size: 1.4rem;
    padding: 0.6rem 1.2rem;
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.post-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more:after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform var(--transition-speed) ease;
}

.read-more:hover:after {
    transform: translateX(3px);
}

/* Daily Inspiration Section */
.daily-inspiration {
    padding: var(--section-padding);
    background-color: white;
}

.daily-inspiration h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.inspiration-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.inspiration-text blockquote {
    font-size: 2.4rem;
    font-family: var(--font-heading);
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

.quote-author {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: right;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.testimonial {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--card-shadow);
}

.testimonial-content p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin-right: 1.5rem;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--text-light);
}

/* Call to Action Section */
.cta {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    color: white;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 2rem;
}

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

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

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

/* Footer Styles */
footer {
    background-color: #1a1a2e;
    color: white;
    padding: 6rem 0 2rem;
}

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

.footer-info {
    grid-column: span 2;
}

.footer-logo {
    height: 5rem;
    width: auto;
    margin-bottom: 2rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style-type: none;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed) ease;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact address p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-contact address p svg {
    margin-right: 1rem;
}

.footer-contact address p a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact address p a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons.large a {
    width: 5rem;
    height: 5rem;
}

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 100rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.cookie-content {
    width: 100%;
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-policy {
    font-size: 1.3rem;
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    max-width: 70rem;
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-content {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.blog-card {
    display: grid;
    grid-template-columns: 35rem 1fr;
    gap: 3rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    height: 100%;
}

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

.blog-text {
    padding: 3rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.date, .category {
    font-size: 1.4rem;
    color: var(--text-light);
}

.category {
    padding: 0.2rem 1rem;
    background-color: rgba(94, 53, 177, 0.1);
    border-radius: 2rem;
    color: var(--primary-color);
}

.blog-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.blog-text p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 50rem;
    margin: 3rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Services Page Styles */
.services-main {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    display: grid;
    grid-template-columns: 40rem 1fr;
    gap: 4rem;
    padding: 0;
    overflow: hidden;
}

.service-image {
    height: 100%;
}

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

.service-content {
    padding: 4rem;
}

.service-description {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    color: var(--text-light);
}

.service-features {
    list-style-type: none;
    margin-bottom: 3rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-features li svg {
    margin-right: 1rem;
    color: var(--success-color);
}

.service-features li.unavailable svg {
    color: var(--danger-color);
}

.service-features.compact li {
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 3rem;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: var(--primary-light);
    color: white;
    margin-bottom: 2rem;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background-color: white;
}

.section-description {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 5rem;
    color: var(--text-light);
    font-size: 1.8rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 0 var(--border-radius);
    font-weight: 500;
}

.pricing-header {
    padding: 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    margin-bottom: 1rem;
}

.price {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price span {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    list-style-type: none;
    padding: 3rem;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pricing-features li svg {
    margin-right: 1rem;
    color: var(--success-color);
}

.pricing-features li.unavailable {
    color: var(--text-light);
}

.pricing-features li.unavailable svg {
    color: var(--danger-color);
}

.pricing-card .btn {
    display: block;
    margin: 0 3rem 3rem;
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.faq h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--card-shadow);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

.faq.compact {
    padding: 6rem 0;
}

/* About Us Page Styles */
.about-story {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 40rem;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.7rem;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

/* Mission & Values Section */
.mission-values {
    padding: var(--section-padding);
    background-color: white;
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.value-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: var(--primary-light);
    color: white;
    margin-bottom: 2rem;
}

.value-card h3 {
    margin-bottom: 1.5rem;
}

.value-card p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Team Section */
.team {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.team h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.team-member {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-member img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
}

.team-member h3 {
    margin: 2rem 0 0.5rem;
}

.team-member p {
    margin: 0 2rem 1.5rem;
    color: var(--text-light);
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(94, 53, 177, 0.1);
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Company Stats Section */
.company-stats {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 4.2rem;
    color: white;
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-main {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

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

.contact-info > p {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.contact-methods {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--primary-light);
    color: white;
    margin-right: 2rem;
    flex-shrink: 0;
}

.method-details h3 {
    margin-bottom: 0.5rem;
}

.method-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.availability {
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: italic;
}

.social-connect h3 {
    margin-bottom: 2rem;
}

.contact-form-container {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--card-shadow);
}

.contact-form-container h2 {
    margin-bottom: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1.6rem;
    outline: none;
    transition: border-color var(--transition-speed) ease;
}

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

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--text-light);
}

.contact-form button {
    width: 100%;
}

/* Map Section */
.map-section {
    padding: 0 0 8rem;
    background-color: var(--background-color);
}

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

.map-container {
    height: 40rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thank You Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    max-width: 50rem;
    width: 90%;
    position: relative;
    padding: 4rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.8rem;
    color: var(--text-light);
    cursor: pointer;
}

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    width: 8rem;
    height: 8rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thank-you-message h2 {
    margin-bottom: 1.5rem;
}

.thank-you-message p {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.close-btn {
    display: inline-block;
}

/* Blog Post Page Styles */
.blog-post {
    padding: 6rem 0;
    background-color: var(--background-color);
}

.post-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.post-date, .post-category, .post-author {
    font-size: 1.6rem;
    color: var(--text-light);
}

.post-category {
    padding: 0.2rem 1.5rem;
    background-color: rgba(94, 53, 177, 0.1);
    border-radius: 2rem;
    color: var(--primary-color);
}

.post-featured-image {
    margin-bottom: 4rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.post-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 4rem;
}

.post-introduction {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.post-content h2 {
    font-size: 2.8rem;
    margin: 4rem 0 2rem;
}

.post-content h2:first-of-type {
    margin-top: 0;
}

.post-content p {
    font-size: 1.7rem;
    line-height: 1.7;
}

.post-content ul, .post-content ol {
    padding-left: 2rem;
    margin-bottom: 3rem;
}

.post-content li {
    margin-bottom: 1rem;
    font-size: 1.7rem;
}

.post-image {
    margin: 3rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.post-image figcaption {
    text-align: center;
    padding: 1rem;
    background-color: #f5f5f5;
    color: var(--text-light);
    font-size: 1.4rem;
}

blockquote {
    font-size: 1.8rem;
    font-style: italic;
    padding: 2rem 3rem;
    margin: 3rem 0;
    background-color: rgba(94, 53, 177, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

blockquote p {
    margin-bottom: 1rem;
}

blockquote cite {
    font-size: 1.6rem;
    font-style: normal;
    color: var(--text-light);
    display: block;
    text-align: right;
}

.data-table {
    overflow-x: auto;
    margin: 3rem 0;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table .positive {
    color: var(--success-color);
    font-weight: 600;
}

.data-table .negative {
    color: var(--danger-color);
    font-weight: 600;
}

.post-tip {
    background-color: rgba(0, 188, 212, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-tip h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.post-tip p {
    margin-bottom: 0;
}

.post-author-bio {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.post-author-bio img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h3 {
    margin-bottom: 1rem;
}

.author-details p {
    margin-bottom: 0;
}

.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.post-tags h3 {
    margin: 0 1rem 0 0;
}

.post-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style-type: none;
    margin: 0;
}

.post-tags li a {
    display: block;
    padding: 0.5rem 1.5rem;
    background-color: #f5f5f5;
    border-radius: 2rem;
    color: var(--text-light);
    font-size: 1.4rem;
    transition: all var(--transition-speed) ease;
}

.post-tags li a:hover {
    background-color: var(--primary-light);
    color: white;
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
}

.prev-post, .next-post {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.prev-post a, .next-post a {
    display: block;
}

.prev-post.disabled, .next-post.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.prev-post span, .next-post span {
    display: block;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.prev-post h4, .next-post h4 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.prev-post {
    text-align: left;
}

.next-post {
    text-align: right;
}

.related-posts {
    padding: 0 0 8rem;
    background-color: var(--background-color);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 3rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 60%;
    }

    .service-card.featured {
        grid-template-columns: 35rem 1fr;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 58%;
    }

    .hero .container,
    .inspiration-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        grid-template-columns: 30rem 1fr;
    }

    .service-card.featured {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .about-image {
        order: -1;
        max-width: 50rem;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }

    header {
        height: auto;
        padding: 2rem 0;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: left var(--transition-speed) ease;
        z-index: 101;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 8rem 2rem 2rem;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        padding: 1.5rem;
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 102;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 25rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 54%;
    }

    h1 {
        font-size: 3.6rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .post-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author img {
        margin: 0 auto 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

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

    .footer-info {
        grid-column: span 1;
    }
}
