:root {
    --primary-color: #1A2A4C; /* Dark Blue */
    --accent-color: #48D1CC;  /* Turquoise */
    --secondary-color: #F39C12; /* Orange for secondary CTAs */
    --bg-light: #F8F9FA;
    --bg-dark: #121E36;
    --text-dark: #212529;
    --text-light: #F8F9FA;
    --text-muted: #6c757d;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    --transition-speed: 0.3s;
}

/* --- RESET & BASE --- */
*, *::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-dark);
    background-color: #FFFFFF;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 16px; }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
a:hover { color: var(--secondary-color); }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 20px; }
img { max-width: 100%; height: auto; display: block; }
section { padding: clamp(60px, 10vw, 100px) 0; }

.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all var(--transition-speed) ease;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all var(--transition-speed) ease;
}

/* --- BUTTONS --- */
.cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-body);
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}
.cta-button.primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}
.cta-button.primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.cta-button.secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}
.cta-button.secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}
.cta-button.large { padding: 16px 36px; font-size: 1.1rem; }
.nav-cta {
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
}
.nav-cta:hover { background: var(--accent-color); color: var(--primary-color); }

/* --- HERO SECTIONS --- */
@keyframes kenburns-top { 0% { transform: scale(1) translateY(0); transform-origin: 50% 16%; } 100% { transform: scale(1.1) translateY(-15px); transform-origin: top; } }

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding: 100px 0;
    animation: kenburns-top 8s ease-out both; 
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 42, 76, 0.8) 0%, rgba(26, 42, 76, 0.4) 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 700px;
    margin: 20px auto 40px;
    opacity: 0.9;
}
.hero-buttons { display: flex; justify-content: center; gap: 20px; }

.hero-small {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
    min-height: 40vh;
}
.hero-small .subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 15px auto 0;
}

/* --- FEATURES SECTION (CIRCULAR)--- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.feature-item {
    text-align: center;
}
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: #e9fbfb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}
.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
}
.feature-item:hover .feature-icon {
    background-color: var(--accent-color);
    transform: scale(1.1);
}
.feature-item:hover .feature-icon svg {
    color: var(--primary-color);
}
.feature-item h3 { color: var(--primary-color); }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; }

/* --- CARD GRID --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.card-content {
    padding: 25px;
}
.card-content h3 { margin-bottom: 10px; }
.card-content p { color: var(--text-muted); font-size: 0.95rem; }
.card-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary-color);
}
.card-link::after { content: ' →'; }

/* --- ABOUT SHORT SECTION --- */
.about-short-section { background-color: var(--bg-light); }
.about-short-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.about-short-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.about-short-content p { color: var(--text-muted); }

/* --- TESTIMONIALS --- */
.testimonials-section { background-color: var(--bg-light); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}
.testimonial-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--accent-color);
}
.star-rating { color: var(--secondary-color); font-size: 1.2rem; margin-bottom: 10px; }
.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    flex-grow: 1;
}
.testimonial-card footer {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
}
.testimonial-card footer strong { display: block; }

/* --- PARTNERS --- */
.partners-title {
    text-align: center;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 40px;
}
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.logo-item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-speed) ease;
}
.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- FINAL CTA --- */
.final-cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--bg-dark));
    color: var(--text-light);
    text-align: center;
}
.final-cta-section h2 { color: #fff; }
.final-cta-section p { max-width: 600px; margin: 20px auto 40px; opacity: 0.9; }

/* --- FOOTER --- */
.main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li { margin-bottom: 10px; }
.footer-column a {
    color: rgba(255, 255, 255, 0.7);
}
.footer-column a:hover { color: var(--accent-color); }
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    
}
.social-links svg {
    width: 20px; height: 20px;
    fill: #fff;
    margin: 10px;
    transition: fill var(--transition-speed) ease;
}
.social-links a:hover { background-color: var(--accent-color); }
.social-links a:hover svg { fill: var(--primary-color); }
.about p { font-size: 0.9rem; }
.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}
.contact-info svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    fill: var(--accent-color);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--accent-color); font-weight: 600; }

/* --- ABOUT PAGE --- */
.story-section p { font-size: 1.1rem; max-width: 800px; margin-left:auto; margin-right: auto; text-align: center; }
.values-section { background-color: var(--bg-light); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.value-card { background: #fff; padding: 30px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.team-member-card {
    text-align: center;
    padding: 20px;
}
.team-member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 5px var(--accent-color);
}
.team-member-card .role {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
}

.stats-section { background: var(--bg-dark); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    color: #fff;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--accent-color);
    display: block;
}
.stat-label { font-size: 1.1rem; opacity: 0.8; }

.text-content-section { padding: 80px 0; }
.text-content { max-width: 800px; }
.text-content h2 { margin-top: 40px; margin-bottom: 20px; }
.text-content h2:first-of-type { margin-top: 0; }
.text-content ul, .text-content ol { margin-bottom: 20px; }
.text-content li { margin-bottom: 10px; }

/* --- SERVICES PAGE --- */
.alt-bg { background-color: var(--bg-light); }
.service-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.service-detail-container.reverse { grid-template-columns: 1fr 1fr; }
.service-detail-container.reverse .service-detail-image { grid-column: 2 / 3; grid-row: 1 / 2; }
.service-detail-container.reverse .service-detail-content { grid-column: 1 / 2; grid-row: 1 / 2; }

.service-detail-image img { border-radius: var(--border-radius); box-shadow: var(--box-shadow); }
.service-detail-content h4 { margin-top: 30px; }
.service-detail-content ul, .service-detail-content ol { list-style: none; padding-left: 0; }
.service-detail-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.service-detail-content ul li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}
.service-detail-content ol { counter-reset: item; }
.service-detail-content ol li::before {
    content: counter(item);
    counter-increment: item;
    background-color: var(--accent-color);
    color: var(--primary-color);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    font-weight: 700;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
}

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

/* --- CONTACT PAGE --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}
.contact-form-container, .contact-info-container {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}
.form-group { margin-bottom: 20px; }
label { display: block; font-weight: 600; margin-bottom: 8px; }
input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(72, 209, 204, 0.3);
}
.contact-details { margin-top: 30px; }
.contact-detail-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}
.contact-detail-item h4 {
    display: flex; align-items: center; gap: 10px; margin-bottom: 5px;
}
.contact-detail-item svg { width:24px; height: 24px; color: var(--accent-color); }
.contact-detail-item p { margin: 0; color: var(--text-muted); line-height: 1.6; }

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0;
}
.map-section { padding-top: 0; }
.map-container iframe { width: 100%; height: 100%; border: none; }


/* --- THANK YOU PAGE --- */
.thank-you-section {
    min-height: 70vh;
    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 p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin-bottom: 30px; }


/* --- FLOATING CTA --- */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transform: scale(0);
    transition: transform 0.4s ease;
}
.floating-cta.visible { transform: scale(1); }
.floating-cta:hover { background-color: var(--secondary-color); }
.floating-cta svg { width: 30px; height: 30px; }


/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
}
.cookie-banner p { margin: 0; font-size: 0.9rem; }
.cookie-banner a { color: var(--accent-color); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 15px; }
.cookie-btn-accept {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
}
.cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .nav-cta { display: none; }
    .about-short-container, .service-detail-container, .service-detail-container.reverse {
        grid-template-columns: 1fr;
    }
    .service-detail-container.reverse .service-detail-image { grid-column: auto; grid-row: auto; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right var(--transition-speed) ease-in-out;
        z-index: 1000;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.5rem; color: #fff; }
    .nav-links a.active { color: var(--accent-color); }

    .hamburger { display: block; }
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: #fff; }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: #fff; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-column.about, .footer-column.contact-info { grid-column: 1 / -1; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .map-container { height: 350px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
}