:root {
    --primary-color: #00204A;
    --accent-color: #DEA94B;
    --bg-light: #F8F8F8;
    --bg-white: #FFFFFF;
    --text-dark: #000000;
    --text-body: #333333;
    --text-light: #FFFFFF;
    --text-muted: #6c757d;
    --border-color: #e0e0e0;
    --shadow: 0 10px 30px rgba(0, 32, 74, 0.1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease-in-out;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 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, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.section {
    padding: clamp(60px, 10vw, 100px) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}
.section-tagline {
    display: block;
    font-family: var(--font-heading);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 1rem;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}
.btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: transparent;
    color: var(--primary-color);
}
.btn-tertiary {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--text-muted);
}
.btn-tertiary:hover {
    background: var(--text-muted);
    color: var(--bg-white);
}
.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}


/* Header */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}
.logo:hover {
    color: var(--accent-color);
}
.main-nav ul {
    display: flex;
    gap: 30px;
}
.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
    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: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.hamburger {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}


/* Hero Section (Asymmetric) */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    overflow: hidden;
}
.hero-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: 40px;
}
.hero-title { color: var(--primary-color); }
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-body);
    max-width: 500px;
    margin-bottom: 2rem;
}
.hero-image-wrapper {
    position: relative;
    transform: translateX(20%);
}
.hero-image-wrapper img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
    max-width: 500px;
}


/* Features Section */
.features-section { background-color: var(--bg-white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #00204A10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--accent-color);
}
.feature-card h3 {
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}


/* Split Section (Asymmetric) */
.split-section { background-color: var(--bg-light); }
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-section.reversed .split-container {
    grid-template-columns: 1fr 1fr;
}
.split-section.reversed .split-content { grid-column: 2; grid-row: 1; }
.split-section.reversed .split-image { grid-column: 1; grid-row: 1; }
.split-content p { color: var(--text-body); }
.split-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}

/* Services Overview */
.services-overview-section { background-color: var(--bg-white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--bg-white);
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card h3 { padding: 20px 25px 0; }
.service-card p { padding: 0 25px; color: var(--text-muted); }
.card-link {
    display: block;
    padding: 0 25px 20px;
    font-weight: bold;
}
.section-cta { text-align: center; margin-top: 50px; }

/* Testimonial Section */
.testimonial-section { background: linear-gradient(135deg, var(--primary-color) 0%, #001a3b 100%); color: var(--text-light); }
.testimonial-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
}
.testimonial-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--accent-color);
}
.testimonial-image img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-content blockquote {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 40px;
}
.testimonial-content blockquote::before {
    content: '“';
    font-size: 5rem;
    color: var(--accent-color);
    position: absolute;
    left: -20px;
    top: -20px;
    line-height: 1;
    opacity: 0.5;
}
.testimonial-content cite {
    font-style: normal;
    font-family: var(--font-heading);
}
.testimonial-content cite strong { display: block; font-size: 1.1rem; }
.testimonial-content cite span { color: var(--accent-color); }


/* Stats Section */
.stats-section { background-color: var(--bg-light); padding: 60px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--accent-color);
    font-weight: 700;
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 1rem;
    color: var(--primary-color);
    display: block;
}

/* FAQ Section */
.faq-section { background-color: var(--bg-white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
}
.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
    color: var(--primary-color);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p { padding-bottom: 20px; color: var(--text-muted); margin-bottom: 0; font-size: 0.95rem; }


/* Angled CTA Section */
.cta-section-angled {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    position: relative;
    padding: 120px 0;
}
.cta-section-angled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg-white);
    transform: skewY(-3deg);
    transform-origin: 0 0;
}
.cta-section-angled .container { position: relative; }
.cta-section-angled h2 { color: var(--text-light); }
.cta-section-angled p { max-width: 600px; margin: 0 auto 30px; opacity: 0.9; }
.cta-section-angled .btn-secondary {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}
.cta-section-angled .btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    border-color: var(--text-light);
}


/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}
.footer-logo {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.footer-about p { font-size: 0.9rem; line-height: 1.6; }
.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.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); }
.footer-column address { font-style: normal; line-height: 1.8; }
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border-radius: 50%;
}
.social-links svg { width: 20px; height: 20px; fill: currentColor; }
.social-links a:hover { background: var(--accent-color); color: var(--primary-color); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}
.footer-bottom a { color: var(--accent-color); font-weight: 600; }

/* About Page Styles */
.page-hero {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}
.page-hero h1 { color: var(--text-light); }
.page-hero p { max-width: 700px; margin: 0 auto; opacity: 0.8; }

.timeline { position: relative; }
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}
.timeline-item { position: relative; padding-left: 60px; margin-bottom: 40px; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--accent-color);
    border: 3px solid var(--bg-white);
    border-radius: 50%;
    z-index: 1;
}
.timeline-content h3 { color: var(--primary-color); }

.value-list { list-style: disc; padding-left: 20px; }
.value-list li { margin-bottom: 1rem; }

.team-section { background-color: var(--bg-light); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.team-member-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}
.team-member-card img {
    width: 120px; height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--accent-color);
}
.team-member-card h3 { margin-bottom: 5px; }
.team-member-card span {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}
.team-member-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* Services Page Styles */
.services-page-section { background-color: var(--bg-light); }
.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-detail-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.service-detail-icon { margin-bottom: 20px; }
.service-detail-icon svg { width: 40px; height: 40px; color: var(--accent-color); }
.service-detail-card p:last-of-type { margin-bottom: 0; }
.service-detail-card strong { color: var(--primary-color); }

.process-list { list-style-type: none; counter-reset: process-counter; padding-left: 0; }
.process-list li {
    font-size: 1.1rem;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}
.process-list li::before {
    counter-increment: process-counter;
    content: "0" counter(process-counter);
    position: absolute;
    left: 0;
    top: -5px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group-full { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(222, 169, 75, 0.2);
}
.form-group textarea { resize: vertical; }
.contact-form button { width: 100%; grid-column: 1/-1; margin-top: 10px; }

.contact-info-wrapper h2, .contact-form-wrapper h2 { margin-bottom: 30px; }
.contact-info-item { margin-bottom: 30px; }
.contact-info-item h3 { font-size: 1.2rem; color: var(--primary-color); margin-bottom: 8px; }
.contact-info-item p { margin-bottom: 0; line-height: 1.6; }

.map-section { padding-top: 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; }

/* Privacy/Text Content */
.text-content { max-width: 800px; margin: 0 auto; }
.text-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.text-content ul { list-style: disc; margin-left: 20px; margin-bottom: 1.5rem; }

/* Thank You Page */
.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 { color: var(--primary-color); 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 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 32, 74, 0.95);
    color: var(--text-light);
    padding: 20px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
#cookie-banner p { margin-bottom: 0; font-size: 0.9rem; flex-grow: 1; min-width: 300px; }
.cookie-buttons { display: flex; gap: 15px; }
#cookie-banner .btn-primary { padding: 8px 20px; }
#cookie-banner .btn-tertiary { background: transparent; color: #fff; border-color: #fff; padding: 8px 20px; }
#cookie-banner .btn-tertiary:hover { background: #fff; color: var(--primary-color); }


/* Responsive */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { grid-row: 2; }
    .hero-image-wrapper { grid-row: 1; transform: translateX(0); }
    .hero-image-wrapper img { margin: 0 auto; }
    .split-container { grid-template-columns: 1fr; }
    .split-section.reversed .split-content, .split-section.reversed .split-image { grid-column: 1; }
    .split-image { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
        transition: right 0.5s ease-in-out;
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; gap: 20px; text-align: center; }
    .nav-link { color: var(--text-light); font-size: 1.5rem; }
    .header-cta { display: none; }
    .hamburger { display: block; }
    .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hamburger.open span { background-color: var(--primary-color); }
    
    .testimonial-container { grid-template-columns: 1fr; text-align: center; }
    .testimonial-image { margin: 0 auto; }
    .testimonial-content blockquote::before { display: none; }
    .testimonial-content blockquote { padding-left: 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .map-container { height: 350px; }
    #cookie-banner { flex-direction: column; text-align: center; }
}