/* 
* Neutral Vector - Main Stylesheet
* Created for a professional photography website
*/

/* ===== GENERAL STYLES ===== */
:root {
    --primary-color: #3a6ea5;
    --secondary-color: #c0a98e;
    --accent-color: #e37f5b;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

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

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

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

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

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

ul, ol {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1.6rem;
}

.btn:hover {
    background-color: var(--dark-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.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;
}

.center {
    text-align: center;
    margin: 2rem 0;
}

section {
    padding: 8rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
    margin-bottom: 4rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    width: 6rem;
    height: 3px;
    background-color: var(--accent-color);
}

.center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.6rem;
}

.semi-transparent {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
}

/* ===== HEADER STYLES ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.logo {
    max-width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

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

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

nav ul li a.active {
    color: var(--accent-color);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    margin-top: 0;
    padding: 0;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.hero h1 {
    font-size: 5.6rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: white;
}

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

.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(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
    padding: 2rem 2rem 1rem;
    font-size: 2.2rem;
}

.service-card p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
}

/* ===== FEATURED WORK ===== */
.featured-work {
    background-color: var(--light-color);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    height: 300px;
}

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

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

/* ===== LATEST BLOG ===== */
.latest-blog {
    background-color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background-color: white;
    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: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.blog-content .date {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    display: block;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    position: relative;
}

.read-more:after {
    content: "→";
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: var(--light-color);
    text-align: center;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 2rem 0;
}

.quote {
    font-family: var(--font-secondary);
    font-size: 2rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.quote:before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -2rem;
    left: -1rem;
    color: var(--accent-color);
    opacity: 0.2;
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

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

.client h4 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

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

/* ===== CTA SECTION ===== */
.cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/6.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 0;
}

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

.cta h2:after {
    background-color: white;
}

.cta p {
    font-size: 2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 6rem 0 2rem;
}

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

.footer-logo img {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

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

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

.footer-links h3:after,
.footer-legal h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 4rem;
    height: 2px;
    background-color: var(--accent-color);
}

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

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

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

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

.footer-contact p i {
    margin-right: 1rem;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

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

.page-number {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== ABOUT PAGE ===== */
.page-banner {
    height: 40vh;
    min-height: 300px;
    background-image: url('images/18.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.page-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

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

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

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

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

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

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

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

.mission-item {
    padding: 3rem;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.mission-item:hover {
    transform: translateY(-10px);
}

.mission-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
}

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

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

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

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

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

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

.team-member .social-icons {
    justify-content: center;
    margin: 1.5rem 0 2rem;
}

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

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

.approach-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-filter {
    margin-bottom: 4rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.gallery-info h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== BLOG PAGE ===== */
.blog-content {
    padding: 6rem 0;
}

.blog-post {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 100%;
}

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

.blog-details {
    padding: 3rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.4rem;
}

.blog-details h2 {
    margin-bottom: 1.5rem;
}

.blog-details h2 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.blog-details h2 a:hover {
    color: var(--primary-color);
}

.subscribe {
    text-align: center;
    padding: 6rem 0;
}

.subscribe h2 {
    margin-bottom: 1.5rem;
}

.subscribe p {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.subscribe-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
}

.form-group input {
    flex: 1;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

/* ===== BLOG POST PAGE ===== */
.blog-post-banner {
    height: 50vh;
    min-height: 400px;
    background-image: url('images/12.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.blog-post-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.blog-post-banner h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
}

.blog-post-content {
    padding: 6rem 0;
}

.post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

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

.featured-image img {
    width: 100%;
    height: auto;
}

.post-text {
    padding: 3rem;
}

.post-text .intro {
    font-size: 1.8rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 3rem;
    font-weight: 500;
}

.post-text h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.post-text h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-text h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-text ul, 
.post-text ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.post-text ul li, 
.post-text ol li {
    margin-bottom: 1rem;
    list-style-position: outside;
}

.post-text ul li {
    list-style-type: disc;
}

.post-text ol li {
    list-style-type: decimal;
}

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

.post-image img {
    width: 100%;
}

.caption {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-light);
    padding: 1rem;
    background-color: var(--light-color);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 3rem;
    border-top: 1px solid #eee;
}

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

.post-tags a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--light-color);
    border-radius: 20px;
    font-size: 1.4rem;
    color: var(--text-light);
    transition: var(--transition);
}

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

.post-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    margin: 0 3rem 3rem;
}

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

.post-author-bio {
    display: flex;
    gap: 2rem;
    padding: 3rem;
    border-top: 1px solid #eee;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.author-info h4 {
    margin-bottom: 1rem;
}

.author-info p {
    margin-bottom: 1.5rem;
}

.author-info .social-icons {
    margin-top: 1rem;
}

.post-sidebar {
    align-self: start;
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.sidebar-widget h3 {
    margin-bottom: 2rem;
    position: relative;
}

.sidebar-widget h3:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 4rem;
    height: 2px;
    background-color: var(--accent-color);
}

.recent-posts li {
    margin-bottom: 1.5rem;
}

.recent-posts li:last-child {
    margin-bottom: 0;
}

.recent-posts li a {
    display: flex;
    gap: 1.5rem;
    color: var(--text-color);
}

.recent-posts li a:hover {
    color: var(--primary-color);
}

.recent-posts li a img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-posts li a h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-posts li a span {
    font-size: 1.3rem;
    color: var(--text-light);
}

.categories li {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.categories li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.categories li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.sidebar-subscribe {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-subscribe input {
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

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

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

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

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

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

.related-post h3 {
    padding: 2rem 2rem 0.5rem;
    font-size: 1.8rem;
    line-height: 1.4;
}

.related-post .date {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    font-size: 1.4rem;
}

/* ===== CONTACT PAGE ===== */
.contact-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.info-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-item h3 {
    margin-bottom: 0.5rem;
}

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

.social-connect {
    margin-top: 4rem;
}

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

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
}

.contact-form 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 #ddd;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-family: var(--font-primary);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

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

.map-container {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 3rem;
}

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

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 2rem;
    text-align: center;
}

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

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

.accordion-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.accordion-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.accordion-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.accordion-content {
    padding: 0 2rem 2rem;
    display: none;
    border-top: 1px solid #eee;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

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

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

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

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--success-color);
    border-radius: 50%;
    color: white;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.cookie-content a {
    font-size: 1.4rem;
    text-decoration: underline;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 55%;
    }
    
    .about-content,
    .approach-content,
    .contact-flex {
        grid-template-columns: 1fr;
    }
    
    .post-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 52%;
    }
    
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 1.5rem;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 4.2rem;
    }
    
    .hero p {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .mission-content,
    .team-grid,
    .blog-grid,
    .gallery,
    .gallery-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .quote {
        font-size: 1.8rem;
    }
    
    .post-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-info .social-icons {
        justify-content: center;
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .form-group {
        flex-direction: column;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links h3:after,
    .footer-legal h3:after,
    .footer-contact h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .post-share {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
