/* 
 * HellcQase Custom Print Design Website Styles
 * A modern, responsive stylesheet for a custom clothing printing service
 */

/* ===== BASE STYLES ===== */
:root {
    /* Color Palette */
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --primary-light: #a9d4f1;
    --secondary-color: #e74c3c;
    --secondary-dark: #c0392b;
    --accent-color: #f39c12;
    --dark-color: #2c3e50;
    --dark-light: #34495e;
    --light-color: #ecf0f1;
    --light-dark: #bdc3c7;
    --success-color: #2ecc71;
    --warning-color: #f1c40f;
    --error-color: #e74c3c;
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-spacing: 80px;
    --container-padding: 15px;
    --element-spacing: 30px;
    --small-spacing: 15px;
    
    /* Other Variables */
    --border-radius: 4px;
    --large-border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 20px;
}

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

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

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: var(--section-spacing) 0;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

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

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.flex {
    display: flex;
}

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

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

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

.grid {
    display: grid;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--heading-font);
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

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

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

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

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

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

.btn.small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn.large {
    padding: 14px 28px;
    font-size: 1.125rem;
}

.btn.centered {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

/* ===== HEADER ===== */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px var(--container-padding);
}

.logo img {
    max-height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    font-family: var(--heading-font);
    position: relative;
    padding: 5px 0;
}

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

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

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(231, 76, 60, 0.1) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-light);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    margin-left: 50px;
}

.hero-image img {
    border-radius: var(--large-border-radius);
    box-shadow: var(--box-shadow);
}

/* ===== STORY SECTION ===== */
.story {
    background-color: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.story-content h3 {
    margin-top: 30px;
}

.story-content ul {
    list-style-type: none;
    padding-left: 0;
}

.story-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.story-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    background-color: var(--light-color);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
    padding: 20px 20px 10px;
    margin-bottom: 10px;
}

.service-card p {
    padding: 0 20px 20px;
    margin-bottom: 15px;
}

.service-card .btn {
    margin: 0 20px 20px;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
    background-color: white;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.blog-content .date {
    display: block;
    font-size: 0.875rem;
    color: var(--dark-light);
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: var(--light-color);
    position: relative;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.quote {
    position: relative;
    padding: 20px 0;
}

.quote .fa-quote-left, 
.quote .fa-quote-right {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.quote .fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
}

.quote .fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.quote p {
    padding: 0 30px;
    font-style: italic;
}

.client {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info h4 {
    margin-bottom: 5px;
}

.client-info p {
    margin-bottom: 0;
    color: var(--dark-light);
}

/* ===== CALL TO ACTION ===== */
.cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

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

.cta .btn.primary:hover {
    background-color: var(--light-dark);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-about img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

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

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: var(--light-dark);
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 10px;
    color: var(--light-dark);
}

.footer-contact p i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

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

.footer-bottom p {
    margin-bottom: 0;
    color: var(--light-dark);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.cookie-more-info {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ===== PAGE TITLE ===== */
.page-title {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.page-title h1 {
    color: white;
    margin-bottom: 15px;
}

.page-title p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BLOG MAIN PAGE ===== */
.blog-main {
    padding: 60px 0;
}

.blog-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card.large {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
}

.blog-card.large img {
    height: 100%;
}

.category {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 3px;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.blog-newsletter {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
}

.newsletter-content h3 {
    margin-bottom: 15px;
}

.newsletter-content p {
    max-width: 600px;
    margin: 0 auto 20px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--light-dark);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: var(--body-font);
}

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

/* ===== BLOG POST ===== */
.blog-post {
    padding: 60px 0;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-meta {
    margin-bottom: 15px;
}

.post-meta span {
    margin: 0 10px;
}

.post-meta .author {
    color: var(--dark-light);
}

.post-featured-image {
    margin-bottom: 40px;
}

.post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.post-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.post-image {
    margin: 30px 0;
}

.post-image .caption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--dark-light);
    margin-top: 10px;
}

.post-content blockquote {
    padding: 20px 30px;
    background-color: var(--light-color);
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
    font-style: italic;
}

.post-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
}

.post-cta {
    text-align: center;
    margin-top: 40px;
}

.post-author {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 60px;
}

.post-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 30px;
}

.author-info h3 {
    margin-bottom: 10px;
}

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

.related-posts {
    margin-bottom: 60px;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card.small {
    display: flex;
    flex-direction: column;
}

.blog-card.small img {
    height: 150px;
}

.blog-card.small h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.comments-section h3 {
    margin-bottom: 30px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
}

.comment.reply {
    margin-left: 60px;
}

.comment-avatar {
    margin-right: 20px;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header h4 {
    margin-bottom: 0;
}

.comment-date {
    font-size: 0.875rem;
    color: var(--dark-light);
}

.comment-actions {
    margin-top: 10px;
}

.reply-link {
    font-size: 0.875rem;
    font-weight: 600;
}

.comment-form h3 {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-dark);
    border-radius: var(--border-radius);
    font-family: var(--body-font);
}

.form-group textarea {
    resize: vertical;
}

/* ===== SERVICES PAGE ===== */
.services-overview {
    text-align: center;
    margin-bottom: 40px;
}

.service-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

.quality-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quality-item {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.quality-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.quality-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quality-item h3 {
    margin-bottom: 15px;
}

.quality-item p {
    margin-bottom: 0;
}

.service-detail {
    padding: 80px 0;
}

.service-detail.alternate {
    background-color: var(--light-color);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.service-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-text h2 {
    margin-bottom: 20px;
}

.service-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-text p {
    margin-bottom: 20px;
}

.service-text ul {
    margin-bottom: 30px;
}

.service-text .btn {
    margin-top: 20px;
}

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

.service-gallery h3 {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item img {
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.pricing {
    background-color: var(--light-color);
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    padding: 30px;
    background-color: var(--dark-color);
    color: white;
}

.pricing-header h3 {
    color: white;
    margin-bottom: 10px;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-body {
    padding: 30px;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-body ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-notes {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 0.875rem;
    color: var(--dark-light);
}

.pricing-notes p {
    margin-bottom: 5px;
}

.process-steps {
    max-width: 800px;
    margin: 50px auto 0;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    height: calc(100% - 30px);
    width: 2px;
    background-color: var(--primary-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.25rem;
    margin-right: 30px;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    margin-bottom: 0;
}

.faq {
    background-color: var(--light-color);
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

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

/* ===== ABOUT PAGE ===== */
.about-story {
    padding-bottom: 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 20px;
}

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

.mission-values {
    background-color: var(--light-color);
}

.mission-content h2 {
    text-align: center;
    margin-bottom: 50px;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.mission-statement h3 {
    margin-bottom: 20px;
}

.mission-statement p {
    font-size: 1.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
}

.value-item p {
    margin-bottom: 0;
}

.team {
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.team-member {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

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

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.bio {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--dark-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

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

.studio {
    background-color: var(--light-color);
    text-align: center;
}

.studio-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

.studio-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.feature {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
}

.feature p {
    margin-bottom: 0;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.sustainability-text h2 {
    margin-bottom: 20px;
}

.sustainability-text p {
    margin-bottom: 30px;
}

.sustainability-list {
    list-style: none;
    padding: 0;
}

.sustainability-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.sustainability-list li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.sustainability-list li div {
    flex: 1;
}

.sustainability-list li h4 {
    margin-bottom: 10px;
}

.sustainability-list li p {
    margin-bottom: 0;
}

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

.community {
    background-color: var(--light-color);
    text-align: center;
}

.community-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

.community-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.project img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    margin-bottom: 10px;
}

.project-content p {
    margin-bottom: 0;
}

.certifications {
    text-align: center;
}

.certifications h2 {
    margin-bottom: 50px;
}

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

.certification {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.certification img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.certification h3 {
    margin-bottom: 10px;
}

.certification p {
    margin-bottom: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding-bottom: 0;
}

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

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-method div {
    flex: 1;
}

.contact-method h3 {
    margin-bottom: 10px;
}

.contact-method p {
    margin-bottom: 5px;
}

.contact-method .hours {
    font-size: 0.875rem;
    color: var(--dark-light);
}

.social-connect h3 {
    margin-bottom: 20px;
}

.contact-form-container {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

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

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    flex: 1;
}

.map-section {
    padding-top: 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

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

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.thank-you-message i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-message h3 {
    margin-bottom: 15px;
}

.thank-you-message p {
    margin-bottom: 20px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-spacing {
        --section-spacing: 60px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 100%;
        margin-left: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
    }
    
    .service-content, 
    .service-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .studio-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .story-content,
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .blog-card.large {
        grid-template-columns: 1fr;
    }
    
    .blog-card.large img {
        height: 220px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .post-author {
        flex-direction: column;
        text-align: center;
    }
    
    .post-author img {
        margin: 0 auto 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .service-gallery .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .section-spacing {
        --section-spacing: 50px;
    }
    
    .service-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin-bottom: 15px;
    }
    
    .comment.reply {
        margin-left: 20px;
    }
    
    .studio-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
}
