:root {
    --primary-color: #2C3E50;
    --accent-color: #3498DB;
    --secondary-color: #27AE60;
    --background-light: #F8F9FA;
    --background-dark: #1A2633;
    --text-primary: #34495E;
    --text-light: #FFFFFF;
    --border-color: #EAECEF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Raleway', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
    --border-radius: 12px;
    --transition: 0.3s ease-in-out;
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--text-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1.5rem; }
a { color: var(--accent-color); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-color); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: clamp(60px, 10vw, 100px) 0; }
.bg-light { background-color: var(--background-light); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-body);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary { background-color: var(--accent-color); color: var(--text-light); border-color: var(--accent-color); }
.btn-primary:hover { background-color: #2980b9; border-color: #2980b9; transform: translateY(-3px); }
.btn-secondary { background-color: transparent; color: var(--primary-color); border-color: var(--primary-color); }
.btn-secondary:hover { background-color: var(--primary-color); color: var(--text-light); }
.btn-tertiary { background-color: transparent; color: var(--text-light); border: 2px solid rgba(255,255,255,0.5); }
.btn-tertiary:hover { background-color: var(--text-light); color: var(--primary-color); }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; text-align: center; }

/* --- Header & Navigation --- */
.main-header {
    background-color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color);
}
.nav-links { display: flex; gap: 2rem; }
.nav-link { font-weight: 500; font-size: 1rem; color: var(--text-primary); position: relative; padding: 5px 0; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-cta { display: block; }
.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; } 

/* --- Hero Section --- */
.hero {
    min-height: calc(90vh - 80px);
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    background-color: var(--background-light);
    overflow: hidden;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}
.hero-text {
    max-width: 600px;
    text-align: left;
}
.hero-title {
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    opacity: 0.9;
    max-width: 90%;
    margin-bottom: 2rem;
}
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-image-container {
    height: 100%;
    width: 100%;
}
.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

/* --- Partners Section --- */
.partners-section {
    background-color: #fff;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.partners-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #888;
    margin-bottom: 30px;
}
.logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.logos-grid img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}
.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* --- Service Overview Section --- */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #5dade2);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-card-icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 1rem; }
.read-more { font-weight: 700; color: var(--accent-color); }

/* --- About Home Section --- */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.grid-2-col-reversed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.grid-2-col-reversed > div:first-child { grid-column: 2; }
.grid-2-col-reversed > div:last-child { grid-column: 1; grid-row: 1;}

.about-home-image img { border-radius: var(--border-radius); box-shadow: var(--shadow); }
.about-home-content p:last-of-type { margin-bottom: 2rem; }

/* --- Stats Section --- */
.stats-section {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
    color: var(--text-light);
    padding: 60px 0;
}
.stats-section h2, .stats-section h3, .stats-section p { color: var(--text-light); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}
.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
}

/* --- Testimonial Section --- */
.testimonial-section {
    background-color: var(--background-light);
}
.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 2rem;
}
.testimonial-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--text-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--primary-color);
}
.testimonial-content cite {
    font-style: normal;
}
.testimonial-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-title {
    color: var(--text-primary);
    opacity: 0.8;
}

/* --- CTA Section --- */
.cta-section {
    background: var(--accent-color);
    color: var(--text-light);
    padding: clamp(60px, 10vw, 100px) 0;
    text-align: center;
}
.cta-section::before {
    content: '';
    display: block;
    width: 100%;
    height: 80px;
    background-color: var(--background-light);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    margin-bottom: -1px;
    transform: translateY(-80px);
}
.cta-content { margin-top: -80px; }
.cta-title { color: var(--text-light); }
.cta-text {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* --- About Page --- */
.page-header {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}
.page-header h1 {
    color: var(--text-light);
}
.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.value-card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}
.team-section {
    background-color: var(--text-light);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.team-member-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}
.team-member-card:hover { 
    transform: translateY(-8px);
    box-shadow: var(--shadow); 
}
.team-member-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}
.team-member-info { padding: 1.5rem; }
.team-member-info .title { color: var(--accent-color); font-weight: 700; }
.team-member-info .bio { font-size: 0.9rem; opacity: 0.8; }

/* --- Services Page --- */
.service-catalog-grid { display: grid; gap: 2.5rem; }
.service-item-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
    background-color: var(--text-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}
.service-item-card:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}
.service-item-card:nth-child(even) img { grid-column: 2; grid-row: 1; }
.service-item-card:nth-child(even) .service-item-content { grid-column: 1; grid-row: 1; }
.service-item-card img { width: 100%; height: 100%; object-fit: cover; }
.service-item-content { padding: 2.5rem; }
.service-item-content ul { list-style-type: '✓  '; padding-left: 1.5rem; margin-bottom: 2rem; }
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.process-step { position: relative; padding-left: 50px; }
.step-number {
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.2;
}
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
}
.faq-item summary {
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    list-style: none; /* Hide default marker */
    position: relative;
    padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 1rem; padding-left: 0.5rem; }

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}
.contact-form-container h2, .contact-info-container h2 {
    margin-bottom: 0.5rem;
}
.contact-form-container p, .contact-info-container p {
    margin-bottom: 2rem;
    opacity: 0.8;
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group { display: flex; flex-direction: column; }
.form-group-full { grid-column: 1 / -1; }
.contact-form label {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}
.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.contact-details li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-details svg { width: 24px; height: 24px; color: var(--accent-color); flex-shrink: 0; margin-top: 5px; }
.contact-details strong { display: block; }
.contact-details p, .contact-details a { margin: 0; }
.map-container {
  width: 100%; height: 450px; border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-section { padding-top: 0; }
/* --- Privacy & Thank You Page --- */ 
.privacy-content h2 { margin-top: 2rem; }
.privacy-content ul { list-style: disc; padding-left: 2rem; margin-bottom: 1rem; }
.thank-you-section {
    min-height: 60vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 80px 20px;
}
.thank-you-icon {
    width: 80px; height: 80px; background: var(--secondary-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-bottom: 30px; box-shadow: var(--shadow);
}
.thank-you-icon svg { width: 40px; height: 40px; color: white; }
.thank-you-section h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; }
.thank-you-section p { font-size: 1.2rem; color: var(--text-primary); opacity: 0.8; max-width: 600px; margin-bottom: 30px; }

/* --- Footer --- */
.main-footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 60px 0 0;
    font-size: 0.95rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}
.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800; font-size: 1.8rem; color: var(--text-light);
    margin-bottom: 1rem;
}
.footer-about p { opacity: 0.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { color: rgba(255,255,255,0.7); font-size: 1.5rem; }
.social-links a:hover { color: var(--text-light); }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--text-light); text-decoration: underline; }
.footer-contact li { margin-bottom: 0.75rem; color: rgba(255,255,255,0.7); }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--text-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}
.footer-bottom p { margin: 0; opacity: 0.7; }

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.cookie-content p { margin: 0; font-size: 0.9rem; }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .grid-2-col, .grid-2-col-reversed { grid-template-columns: 1fr; }
    .grid-2-col-reversed > div:first-child, .grid-2-col-reversed > div:last-child { grid-column: 1; grid-row: auto;}
    .about-home-image { order: -1; }
    .hero { grid-template-columns: 1fr; }
    .hero-image-container img { clip-path: none; max-height: 400px; }
    .hero-content { text-align: center; padding: 2rem; }
    .hero-text { text-align: center; max-width: 100%; }
    .hero-subtitle { max-width: 100%; }
    .hero-cta-group { justify-content: center; }
    .service-item-card, .service-item-card:nth-child(even) { grid-template-columns: 1fr; }
    .service-item-card img, .service-item-card:nth-child(even) img { grid-column: 1; grid-row: 1;}
    .service-item-content, .service-item-card:nth-child(even) .service-item-content { grid-column: 1; grid-row: 2; padding: 1.5rem;}
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 76px; right: 0; bottom: 0;
        width: 100%;
        background-color: var(--text-light);
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    .nav-links.active { transform: translateX(0); }
    .header-cta { display: none; }
    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
    }
    .mobile-nav-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    .nav-open .mobile-nav-toggle span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
    .nav-open .mobile-nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .mobile-nav-toggle span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }    
    .contact-form { grid-template-columns: 1fr; }
    .map-container { height: 350px; }
    #cookie-banner { flex-direction: column; text-align: center; bottom: 10px; left: 10px; right: 10px; }
}