/* 
   G4SKLNRS.com - Main Stylesheet
   Modern and clean design for AI programming services website
*/

/* =================== GENERAL STYLES =================== */
:root {
    --primary-color: #4e67eb;
    --primary-dark: #3951d4;
    --secondary-color: #32d4a4;
    --secondary-dark: #28b88c;
    --accent-color: #ff6b6b;
    --text-color: #333333;
    --text-light: #666666;
    --text-very-light: #999999;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2a2d3e;
    --border-color: #e0e0e0;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

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

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

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

ul, ol {
    list-style-position: inside;
}

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

section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* =================== TYPOGRAPHY =================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 20px;
}

blockquote {
    background-color: var(--bg-light);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
    font-style: italic;
    border-radius: var(--border-radius);
}

blockquote p {
    margin-bottom: 10px;
}

blockquote cite {
    display: block;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
}

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

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

.btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 103, 235, 0.3);
}

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

.btn.secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 212, 164, 0.3);
}

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

.btn.tertiary:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* =================== HEADER & NAVIGATION =================== */
header {
    position: sticky;
    top: 0;
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

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

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

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

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

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

@media (max-width: 768px) {
    nav ul {
        gap: 15px;
    }
    
    .logo img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    nav ul {
        display: none; /* Mobile menu would be implemented with JavaScript */
    }
}

/* =================== HERO SECTION =================== */
.hero {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* =================== FEATURES SECTION =================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

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

.feature-card .icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.feature-card ul {
    list-style-type: none;
    padding: 0;
}

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

.feature-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

/* =================== HOW IT WORKS SECTION =================== */
.how-it-works {
    background-color: var(--bg-light);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
}

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

@media (max-width: 992px) {
    .step {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 400px;
    }
}

/* =================== LATEST POSTS SECTION =================== */
.post-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0 40px;
}

.post-preview {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.post-preview h3 {
    font-size: 1.25rem;
    margin: 20px 20px 10px;
}

.post-preview p {
    margin: 0 20px 20px;
    color: var(--text-light);
}

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

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

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

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

.testimonial-slider {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    max-width: 500px;
    flex: 1;
    min-width: 300px;
}

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

.quote p {
    font-style: italic;
    margin-bottom: 0;
}

.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;
    font-size: 1.1rem;
}

.client-info p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonial {
        min-width: 100%;
    }
}

/* =================== PAGE BANNER =================== */
.page-banner {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner h1 {
        font-size: 2.25rem;
    }
    
    .page-banner p {
        font-size: 1.1rem;
    }
}

/* =================== ABOUT PAGE STYLES =================== */
.about-intro {
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

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

.about-text {
    flex: 1;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px;
    border-radius: var(--border-radius);
    color: white;
}

.mission-box h2,
.vision-box h2 {
    color: white;
    margin-bottom: 20px;
}

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

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

.value-card .icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

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

.team-member h3 {
    margin: 20px 20px 5px;
}

.team-member p {
    margin: 0 20px 20px;
    color: var(--text-light);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

/* =================== SERVICES PAGE STYLES =================== */
.services-intro {
    margin-bottom: 60px;
}

.service-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-item.reversed {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    margin-bottom: 20px;
}

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

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

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

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

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

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

.plan-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px;
    text-align: center;
    color: white;
}

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

.price {
    font-size: 2.5rem;
    font-weight: bold;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
}

.plan-features {
    padding: 30px;
}

.plan-features ul {
    list-style-type: none;
    padding: 0;
}

.plan-features ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.plan-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.plan-footer {
    padding: 0 30px 30px;
    text-align: center;
}

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

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

.tech-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-steps {
    margin-top: 50px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: var(--bg-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

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

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

@media (max-width: 992px) {
    .service-item,
    .service-item.reversed {
        flex-direction: column;
        text-align: center;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .pricing-plan.featured {
        transform: scale(1);
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-5px);
    }
}

/* =================== BLOG PAGE STYLES =================== */
.blog-content {
    display: flex;
    gap: 50px;
}

.blog-grid {
    flex: 3;
}

.blog-post {
    display: flex;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.post-image {
    flex: 1;
    min-width: 300px;
}

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

.post-content {
    flex: 2;
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.post-content h2 {
    margin-bottom: 15px;
}

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

.blog-sidebar {
    flex: 1;
    min-width: 250px;
}

.sidebar-section {
    background: var(--bg-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.sidebar-section h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.sidebar-section ul {
    list-style-type: none;
}

.sidebar-section ul li {
    margin-bottom: 10px;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.popular-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.popular-post span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

@media (max-width: 992px) {
    .blog-content {
        flex-direction: column;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .post-image {
        min-width: 100%;
        height: 250px;
    }
}

/* =================== BLOG POST STYLES =================== */
.blog-post-header {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
    padding: 80px 0;
    text-align: center;
}

.blog-post-header h1 {
    font-size: 2.75rem;
    margin-bottom: 15px;
}

.featured-image {
    max-width: 800px;
    margin: 30px auto 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.blog-post-content {
    padding: 60px 0;
}

.post-body {
    max-width: 800px;
    margin: 0 auto 40px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    background: var(--bg-light);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.post-share span {
    font-weight: 600;
}

.post-share a {
    color: var(--text-light);
}

.post-share a:hover {
    color: var(--primary-color);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.prev-post, 
.next-post {
    flex: 1;
    max-width: 48%;
}

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

.post-navigation span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.post-navigation h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

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

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

.related-post {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.related-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post h4 {
    margin: 15px 15px 5px;
    font-size: 1.1rem;
}

.related-post span {
    display: block;
    margin: 0 15px 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .prev-post, 
    .next-post {
        max-width: 100%;
    }
    
    .next-post {
        text-align: left;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* =================== CONTACT PAGE STYLES =================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 30px;
}

.contact-info {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-text h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-text p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.social-contact {
    margin-top: 40px;
}

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

.social-icons a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.contact-form {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

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

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

.map-container {
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none; /* Would be controlled with JavaScript */
}

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

.thank-you-modal {
    display: none; /* Would be controlled with JavaScript */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

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

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

.modal-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

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

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

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

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

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

.footer-contact .social-icons {
    margin-top: 20px;
}

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

.footer-contact .social-icons a:hover {
    color: white;
}

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

/* =================== COOKIE CONSENT STYLES =================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
    display: none; /* Would be controlled with JavaScript */
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
}

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

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

/* =================== CTA SECTION =================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .btn.primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

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

.cta .btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
