@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Playfair+Display:wght@700&display=swap');

:root {
 --primary-color: #ca8a04; /* Gold */
 --primary-dark: #a16207;
 --secondary-color: #374151; /* Elegant Charcoal */
 --bg-light: #fef3c7; /* Warm Beige */
 --bg-white: #ffffff;
 --text-dark: #1f2937;
 --text-light: #4b5563;
 --border-color: #e5e7eb;
 --radius-md: 8px;
 --radius-lg: 16px;
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 --font-main: 'Inter', sans-serif;
 --font-heading: 'Playfair Display', serif;
 --transition: all 0.3s ease-in-out;
}

/* --- BASE RESET & TYPOGRAPHY --- */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-light);
 background-color: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

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

a:hover {
 color: var(--primary-dark);
}

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

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

/* --- HEADER & NAVIGATION --- */
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.85);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: var(--transition);
}

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

.nav-logo {
 font-family: var(--font-heading);
 font-size: 1.75rem;
 font-weight: 700;
 color: var(--secondary-color);
}

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

.nav-links a {
 color: var(--text-dark);
 font-weight: 500;
 position: relative;
 padding: 8px 0;
}

.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background-color: var(--primary-color);
 transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
 width: 100%;
}

.nav-cta {
 display: block;
}

.nav-toggle {
 display: none;
 cursor: pointer;
 background: none;
 border: none;
 padding: 5px;
 z-index: 1010;
}
.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background-color: var(--secondary-color);
 margin: 6px 0;
 transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* --- BUTTONS --- */
.btn {
 display: inline-block;
 padding: 12px 28px;
 border-radius: var(--radius-md);
 font-weight: 600;
 text-align: center;
 transition: var(--transition);
 border: 2px solid transparent;
}
.btn-primary {
 background-color: var(--primary-color);
 color: white;
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
 color: white;
}
.btn-secondary {
 background-color: transparent;
 border-color: var(--primary-color);
 color: var(--primary-color);
}
.btn-secondary:hover {
 background-color: var(--primary-color);
 color: white;
}

/* --- SECTIONS --- */
.section {
 padding: 100px 0;
}
.section.bg-light {
 background-color: var(--bg-light);
}

.section-header {
 margin-bottom: 60px;
}
.section-header.centered {
 text-align: center;
 max-width: 750px;
 margin-left: auto;
 margin-right: auto;
}

.section-label {
 display: inline-block;
 color: var(--primary-dark);
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 1px;
 margin-bottom: 12px;
}
.section-title {
 margin-bottom: 20px;
}

.section-subtitle{
 font-size: 1.125rem;
 max-width: 600px;
 margin: 0 auto;
}

/* --- HERO --- */
.hero {
 background-image: linear-gradient(rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.6)), url('assets/img-33c93b0d.jpg');
 background-size: cover;
 background-position: center;
 min-height: 85vh;
 display: flex;
 align-items: center;
 text-align: center;
 color: white;
 padding-top: 80px;
}
.hero-content {
 max-width: 800px;
 margin: 0 auto;
}
.hero-title {
 color: white;
 margin-bottom: 24px;
}
.hero-subtitle {
 font-size: 1.25rem;
 margin-bottom: 40px;
 opacity: 0.9;
}
.hero-actions {
 display: flex;
 justify-content: center;
 gap: 16px;
 flex-wrap: wrap;
}
.hero .btn-secondary {
 border-color: white;
 color: white;
}
.hero .btn-secondary:hover {
 background-color: white;
 color: var(--secondary-color);
}

.page-hero {
 background: var(--secondary-color);
 color: white;
 padding: 160px 0 80px;
 text-align: center;
}
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; opacity: 0.8; }

/* --- CARDS & GRIDS --- */
.grid-2 { display: grid; gap: 30px; }
.grid-3 { display: grid; gap: 30px; }
@media (min-width: 768px) {
 .grid-2 { grid-template-columns: repeat(2, 1fr); }
 .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
 background-color: var(--bg-white);
 border-radius: var(--radius-lg);
 padding: 32px;
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 text-align: center;
}
.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}
.card-icon {
 display: inline-flex;
 justify-content: center;
 align-items: center;
 width: 60px;
 height: 60px;
 background-color: var(--bg-light);
 border-radius: 50%;
 margin-bottom: 20px;
}
.card-icon svg {
 width: 28px;
 height: 28px;
 color: var(--primary-color);
}
.card h3 {
 margin-bottom: 12px;
}
.card-text {
 font-size: 0.95rem;
}

/* Article Card */
.article-card {
 text-align: left;
 padding: 0;
 overflow: hidden;
 display: flex;
 flex-direction: column;
}
.article-card img {
 width: 100%;
 height: 220px;
 object-fit: cover;
}
.article-card .card-body {
 padding: 24px;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}
.article-card .card-title {
 font-family: var(--font-heading);
 color: var(--secondary-color);
 font-size: 1.25rem;
 margin-bottom: 8px;
}
.article-card .card-meta {
 font-size: 0.8rem;
 color: var(--text-light);
 margin-bottom: 12px;
 text-transform: uppercase;
}
.article-card .card-text {
 font-size: 0.95rem;
 margin-bottom: 16px;
 flex-grow: 1;
}
.card-button {
 display: inline-block;
 align-self: flex-start;
 font-weight: 600;
 color: var(--primary-color);
}
.card-button:hover {
 color: var(--primary-dark);
}

/* --- MEDIA OBJECT --- */
.media-object {
 display: grid;
 grid-template-columns: 1fr;
 gap: 40px;
 align-items: center;
}
@media (min-width: 768px) {
 .media-object {
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 }
 .media-object.reversed .media-visual {
 grid-column: 2;
 grid-row: 1;
 }
}
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 width: 100%;
 height: auto;
 object-fit: cover;
 max-height: 450px;
}

.media-copy ul {
 list-style: none;
 padding-left: 0;
 margin: 24px 0;
}
.media-copy ul li {
 padding-left: 28px;
 position: relative;
 margin-bottom: 12px;
}
.media-copy ul li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--primary-color);
 font-weight: 700;
}
.media-copy .btn {
 margin-top: 16px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
 background-color: var(--bg-white);
 padding: 32px;
 border-left: 5px solid var(--primary-color);
 border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
 box-shadow: var(--shadow-md);
 position: relative;
}
.testimonial-card p {
 font-style: italic;
 font-size: 1.1rem;
 margin-bottom: 24px;
}
.testimonial-card footer {
 display: flex;
 align-items: center;
 gap: 16px;
}
.testimonial-avatar {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 object-fit: cover;
}
.testimonial-card cite {
 font-weight: 700;
 font-style: normal;
 color: var(--secondary-color);
}
.testimonial-card span {
 font-size: 0.9rem;
 color: var(--text-light);
}

/* --- CTA SECTION --- */
.cta-section {
 background-color: var(--secondary-color);
 padding: 80px 0;
 text-align: center;
 color: white;
}
.cta-section .section-title {
 color: white;
}
.cta-section .section-subtitle {
 opacity: 0.8;
 margin-bottom: 30px;
}

/* --- FOOTER --- */
.footer {
 background-color: var(--secondary-color);
 color: #cbd5e1;
 padding: 80px 0 30px;
 font-size: 0.95rem;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-family: var(--font-heading);
 font-size: 1.75rem;
 font-weight: 700;
 color: white;
 margin-bottom: 16px;
 display: inline-block;
}
.footer-description {
 line-height: 1.6;
 margin-bottom: 20px;
}
.footer-social {
 display: flex;
 gap: 12px;
}
.footer-social a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 40px;
 height: 40px;
 background-color: rgba(255,255,255,0.1);
 color: white;
 border-radius: 50%;
}
.footer-social a:hover {
 background-color: var(--primary-color);
}
.footer-social svg { width: 20px; height: 20px; }
.footer-heading {
 font-family: var(--font-main);
 font-size: 1.1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a, .footer-contact a {
 color: #cbd5e1;
}
.footer-links a:hover, .footer-contact a:hover {
 color: white;
 text-decoration: underline;
}
.footer-contact { font-style: normal; }
.footer-contact-item {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 margin-bottom: 12px;
}
.footer-contact-item svg {
 flex-shrink: 0;
 width: 20px;
 height: 20px;
 margin-top: 4px;
 color: var(--primary-color);
}
.footer-divider {
 height: 1px;
 background-color: rgba(255,255,255,0.1);
 margin: 40px 0;
}
.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 16px;
 font-size: 0.9rem;
 color: #94a3b8;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: #94a3b8; }
.footer-legal-links a:hover { color: white; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
 .nav-cta { display: none; }
}

@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 100%;
 height: 100vh;
 background-color: var(--secondary-color);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 font-size: 1.5rem;
 transition: right 0.5s ease-in-out;
 }
 .nav-links.open {
 right: 0;
 }
 .nav-links a {
 color: white;
 }
 .grid-3 { grid-template-columns: 1fr; }
 .footer-grid{ grid-template-columns: 1fr; text-align: center; }
 .footer-brand .footer-social { justify-content: center; }
 .footer-contact-item { justify-content: center; }
 .footer-bottom { flex-direction: column; }
}
/* --- COOKIE BANNER --- */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--secondary-color);
 color: white;
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
}
#cookie-banner p { margin: 0; font-size: 0.9rem; }
#cookie-banner a { color: var(--primary-color); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-buttons button {
 padding: 8px 16px;
 border: none;
 border-radius: var(--radius-md);
 cursor: pointer;
 background: var(--primary-color);
 color: white;
 font-weight: 500;
}
.cookie-buttons button:last-child {
 background: #4b5563;
}
@media (max-width: 768px) {
 #cookie-banner { flex-direction: column; text-align: center; }
}

/* Animations */
.animate-on-scroll {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
 opacity: 1;
 transform: translateY(0);
}

/* Timeline */
.timeline {
 position: relative;
 max-width: 1000px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
}
.timeline-step {
 background: white;
 border-top: 4px solid var(--primary-color);
 padding: 24px;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-md);
}
.timeline-icon {
 width: 50px;
 height: 50px;
 font-size: 1.2rem;
 font-weight: 700;
 display: flex;
 justify-content: center;
 align-items: center;
 border-radius: 50%;
 background: var(--primary-color);
 color: white;
 margin-bottom: 16px;
}
.timeline-step h3 {
 margin-bottom: 10px;
}

/* Feature List */
.feature-list {
 background-color: white;
 padding: 24px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.feature-list h3 { margin-bottom: 16px; }
.feature-list ul {
 list-style: none;
 padding: 0;
}
.feature-list ul li {
 padding-left: 24px;
 position: relative;
 margin-bottom: 10px;
}
.feature-list ul li::before {
 content: '';
 color: var(--primary-color);
 position: absolute;
 left: 0;
}
.pagination {
 display: flex;
 justify-content: center;
 gap: 8px;
 margin-top: 48px;
}
.pagination a {
 padding: 8px 16px;
 color: var(--primary-color);
 text-decoration: none;
 font-weight: 500;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
}
.pagination a.active, .pagination a:hover {
 background: var(--primary-color);
 color: white;
 border-color: var(--primary-color);
}

/* FAQ */
.faq-accordion {
 max-width: 800px;
 margin: 0 auto;
}
.faq-item {
 border-bottom: 1px solid var(--border-color);
}
.faq-item summary {
 font-size: 1.1rem;
 font-weight: 600;
 padding: 20px 0;
 cursor: pointer;
 list-style: none;
 position: relative;
 padding-right: 30px;
 color: var(--secondary-color);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
 content: '+';
 position: absolute;
 right: 5px;
 font-size: 1.5rem;
 color: var(--primary-color);
 transition: transform 0.2s;
}
.faq-item[open] summary::after {
 transform: rotate(45deg);
}
.faq-item p {
 padding-bottom: 20px;
}

/* Legal Page */
.legal-page main { padding-top: 80px; }
.legal-content { max-width: 800px; }
.legal-content h2 { margin-top: 40px; margin-bottom: 16px; }
.legal-content p, .legal-content ul { margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; }
.legal-content ul li { margin-bottom: 8px; }

.thank-you-content {
	max-width: 600px;
	margin: 0 auto;
}

/* Contact Page */
.contact-layout {
 display: grid;
 grid-template-columns: 1fr;
 gap: 60px;
}
@media (min-width: 992px) {
 .contact-layout {
 grid-template-columns: 2fr 1fr;
 }
}
.contact-form .form-group {
 margin-bottom: 20px;
}
.contact-form label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
}
.contact-form input,
.contact-form textarea {
 width: 100%;
 padding: 14px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 background-color: #f9fafb;
}
.contact-form input:focus,
.contact-form textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 2px rgba(202, 138, 4, 0.2);
}
.contact-form .checkbox-group {
 display: flex;
 align-items: center;
 gap: 10px;
}
.contact-form .checkbox-group label {
 margin-bottom: 0;
 font-weight: normal;
}
.contact-form .submit-button {
 width: 100%;
 padding: 16px;
 font-size: 1.1rem;
}

.contact-details .contact-item {
 display: flex;
 align-items: flex-start;
 gap: 16px;
 margin-bottom: 24px;
}
.contact-item-icon {
 flex-shrink: 0;
 width: 48px;
 height: 48px;
 background-color: var(--bg-light);
 border-radius: 50%;
 display: flex;
 justify-content: center;
 align-items: center;
}
.contact-item-icon svg {
 width: 24px;
 height: 24px;
 color: var(--primary-color);
}
.contact-item-text h4 {
 margin-bottom: 4px;
 font-size: 1.2rem;
}
.contact-item-text p {
 margin: 0;
 color: var(--text-dark);
}

.map-container {
 width: 100%;
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
}

/* Form Validation */
.input-error {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}
.field-error {
 color: #dc2626;
 font-size: 0.85rem;
 margin-top: 4px;
 animation: fadeIn 0.3s ease;
}
.form-success {
 animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
 from { opacity: 0; transform: translateY(-10px); }
 to { opacity: 1; transform: translateY(0); }
}
.spinner {
 display: inline-block;
 width: 16px;
 height: 16px;
 border: 2px solid rgba(255,255,255,0.3);
 border-radius: 50%;
 border-top-color: #fff;
 animation: spin 0.8s linear infinite;
 margin-right: 8px;
 vertical-align: middle;
}
@keyframes spin {
 to { transform: rotate(360deg); }
}
button[disabled] {
 opacity: 0.7;
 cursor: not-allowed;
}

/* Team */
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
}
.team-member {
 text-align: center;
}
.team-member img {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 16px;
 border: 4px solid var(--bg-light);
 box-shadow: var(--shadow-md);
}
.team-member h3 {
 margin-bottom: 4px;
}
.team-member p {
 color: var(--primary-dark);
 font-weight: 500;
}

.value-card {
 border-top: none;
 border-left: 4px solid var(--primary-color);
 text-align: left;
}