:root {
    --primary-color: #1a2c41; /* Charcoal/Dark Blue */
    --accent-color: #d4af37;  /* Gold */
    --accent-color-light: #f0c340;
    --bg-color: #ffffff;
    --bg-alternate-color: #f8f9fa;
    --text-color: #333;
    --text-muted: #6c757d;
    --heading-color: #1a2c41;
    --border-color: #e9ecef;
    --white-color: #fff;
    --header-height: 80px;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    --transition-speed: 0.3s;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

/* Base & Typography */
*, *::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-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem;}
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: 1rem;}
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
a { color: var(--accent-color); text-decoration: none; transition: color var(--transition-speed) ease; }
a:hover { color: var(--accent-color-light); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sections */
.section-padding { padding: clamp(60px, 10vh, 100px) 0; }
.alternate-bg { background-color: var(--bg-alternate-color); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { margin-bottom: 1rem; }
.section-subtitle { max-width: 700px; margin: 0 auto; color: var(--text-muted); font-size: 1.1rem;}

/* Header & Navigation */
.main-header {
    background: var(--white-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}
.logo:hover { color: var(--primary-color); }

.nav-links { display: flex; gap: 2rem; }
.nav-link {
    font-weight: 600;
    color: var(--heading-color);
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--accent-color); }

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
    border: none;
    cursor: pointer;
}
.cta-button:hover {
    background-color: var(--accent-color-light);
    transform: translateY(-2px);
}
.cta-button.light-cta { background-color: var(--white-color); color: var(--primary-color); }
.cta-button.light-cta:hover { background-color: var(--bg-alternate-color); }
.nav-cta { margin-left:1rem; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all var(--transition-speed) ease;
    position: absolute;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

body.menu-open .menu-toggle span:nth-child(1) { transform: rotate(45deg); top: 9px; }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg); bottom: 10px; }

/* Hero Section */
.hero {
    min-height: calc(90vh - var(--header-height));
    background-image: url('https://images.pexels.com/photos/159806/meeting-modern-room-conference-159806.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 44, 65, 0.8), rgba(26, 44, 65, 0.6));
}
.hero-content { position: relative; z-index: 1; color: var(--white-color); }
.hero-title { font-size: clamp(3rem, 6vw, 5rem); color: var(--white-color); line-height: 1.2; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.5rem); max-width: 800px; margin: 0 auto 2.5rem; opacity: 0.9; }
.hero-cta { padding: 1rem 3rem; font-size: 1rem; }

.page-hero {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}
.page-hero-content h1 {
    color: var(--white-color); font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 0.5rem;
}
.page-hero-content p {
    color: var(--white-color); opacity: 0.8; font-size: 1.2rem;
}

/* Features Section */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature-icon {
    width: 60px; height: 60px;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Services Overview */
.services-overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-overview-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-speed) ease;
}
.service-overview-card:hover { transform: translateY(-8px); }
.service-overview-card img {
    width: 100%; height: 200px;
    object-fit: cover;
}
.service-overview-content { padding: 1.5rem; }
.service-overview-content h3 { margin-bottom: 0.5rem; }
.service-overview-content p { color: var(--text-muted); margin-bottom: 1rem;}
.link-arrow { font-weight: 700; color: var(--accent-color); }
.link-arrow::after { content: ' →'; }

/* About Overview */
.content-image-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.image-block img { border-radius: var(--border-radius); box-shadow: var(--shadow-md); }
.image-block { order: 2; }
.content-block { order: 1; }
.content-image-layout.reverse .image-block { order: 1; }
.content-image-layout.reverse .content-block { order: 2; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.testimonial-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
.testimonial-quote {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}
.testimonial-quote::before {
    content: '“';
    position: absolute;
    left: 0; top: -0.5rem;
    font-size: 3rem;
    color: var(--accent-color);
    font-family: serif;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-author h4 { margin: 0; font-size: 1rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.9rem; }

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    text-align: center;
}
.cta-section h2 { color: var(--white-color); }
.cta-section p { max-width: 600px; margin: 0 auto 2rem; opacity: 0.9; }

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}
.footer-column h4 { color: var(--white-color); margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-column .logo { color: var(--white-color); }
.footer-column ul li { margin-bottom: 0.8rem; }
.footer-column ul a { color: rgba(255,255,255,0.7); }
.footer-column ul a:hover { color: var(--white-color); }
.footer-column p { line-height: 1.8; }
.subscribe-form { display: flex; position: relative; }
.subscribe-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: var(--border-radius);
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.5); }
.subscribe-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--accent-color);
    border: none;
    color: var(--white-color);
    width: 40px;
    border-radius: 5px; cursor: pointer;
    transition: background-color var(--transition-speed);
}
.subscribe-form button:hover { background-color: var(--accent-color-light); }
.subscribe-form button svg { width: 20px; height: 20px; }

.disclaimer-section {
    background-color: rgba(0,0,0,0.2);
    color: rgba(255,255,255,0.6);
    padding: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 3rem auto 0;
    width: 90%;
    max-width: 1200px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
}
.disclaimer-section strong {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
}

.copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.9rem;
}
.copyright-bar .container { display: flex; justify-content: space-between; align-items: center; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}
.social-links a:hover { color: var(--white-color); }
.social-links svg { width: 24px; height: 24px; }


/* About Page */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.value-card { padding: 2rem; background: var(--white-color); border-radius: var(--border-radius); border: 1px solid var(--border-color); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.team-member-card { text-align: center; }
.team-member-card img {
    width: 150px; height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--accent-color);
}
.team-member-card h4 { margin-bottom: 0.25rem; }
.team-member-card span { color: var(--text-muted); display: block; margin-bottom: 0.5rem; }
.achievements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.achievement-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
}
.achievement-card h4 { color: var(--accent-color); margin-bottom: 0.5rem; }

/* Services Page */
.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}
.service-detail-item:last-child { margin-bottom: 0; }
.service-detail-item.reverse .service-detail-image { order: 2; }
.service-detail-item.reverse .service-detail-content { order: 1; }
.service-detail-image img { border-radius: var(--border-radius); box-shadow: var(--shadow-md); }
.service-detail-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 2rem; }
.service-detail-content ul li { margin-bottom: 0.5rem; color: var(--text-muted); }

.faq-section { max-width: 800px; margin: 0 auto; }
.faq-accordion .faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    transition: transform var(--transition-speed) ease;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p { padding-bottom: 1.5rem; color: var(--text-muted); }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.contact-info-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info-icon {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; border-radius: 50%;
    background-color: var(--bg-alternate-color); color: var(--accent-color);
}
.contact-info-icon svg { width: 24px; height: 24px; }
.contact-info-item h4 { margin-bottom: 0.2rem; }
.contact-info-item p, .contact-info-item a { color: var(--text-muted); line-height: 1.5; margin: 0; }
.contact-info-item a:hover { color: var(--accent-color); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--bg-alternate-color);
    transition: border-color var(--transition-speed) ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.map-section { background: var(--bg-alternate-color); padding: 5rem 0; }
.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* Privacy / Thank You */
.text-content h2 { margin-top: 3rem; margin-bottom: 1rem; }
.text-content ul { list-style: disc; padding-left: 1.5rem; margin: 1rem 0;}

.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(--accent-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 30px;
}
.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-muted); max-width: 600px; margin-bottom: 30px; }


/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 1.5rem 2rem;
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--accent-color); font-weight: bold; }
.cookie-buttons { display: flex; gap: 1rem; flex-shrink: 0; }
.cookie-accept {
    background-color: var(--accent-color); color: var(--white-color);
    border: none; padding: 0.6rem 1.2rem;
    border-radius: 50px; cursor: pointer; transition: background-color var(--transition-speed);
}
.cookie-accept:hover { background-color: var(--accent-color-light); }
.cookie-decline {
    background: none; color: var(--white-color);
    border: 1px solid var(--white-color); padding: 0.6rem 1.2rem;
    border-radius: 50px; cursor: pointer; transition: all var(--transition-speed);
}
.cookie-decline:hover { background-color: var(--white-color); color: var(--primary-color); }


/* Responsive Design */
@media (max-width: 1024px) {
    .nav-cta { display: none; }
    .content-image-layout, .content-image-layout.reverse { grid-template-columns: 1fr; }
    .image-block { order: 1 !important; margin-bottom: 2rem; }
    .content-block { order: 2 !important; }
    .service-detail-item, .service-detail-item.reverse { grid-template-columns: 1fr; }
    .service-detail-item .service-detail-image, .service-detail-item.reverse .service-detail-image { order: 1; margin-bottom: 2rem; }
    .service-detail-item .service-detail-content, .service-detail-item.reverse .service-detail-content { order: 2; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-container { margin-top: 3rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform var(--transition-speed) ease;
    }
    body.menu-open .nav-links { transform: translateY(0); }
    .menu-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .copyright-bar .container { flex-direction: column; gap: 1rem; }
    .cookie-banner { flex-direction: column; text-align: center; }
}