: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;
 --text-muted: #6b7280;
 --border-color: #e5e7eb;
 --radius-md: 8px;
 --radius-lg: 16px;
 --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
 --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
 --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
 scroll-behavior: smooth;
 -webkit-font-smoothing: antialiased;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 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 24px;
}

.section {
 padding: 80px 0;
}

.bg-light {
 background-color: var(--bg-light);
}

/* Header */
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 background-color: rgba(255, 255, 255, 0.9);
 backdrop-filter: blur(10px);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}

.header.scrolled {
 box-shadow: var(--shadow-md);
 background-color: rgba(255, 255, 255, 0.98);
}

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

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

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

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}
.nav-links a.active {
 color: var(--primary-color);
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
}

.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background-color: var(--text-dark);
 margin: 6px 0;
 transition: var(--transition);
}

/* Hero Section */
.hero {
 background-image: linear-gradient(rgba(55, 65, 81, 0.7), rgba(55, 65, 81, 0.7)), url('assets/img-99303138.jpg');
 background-size: cover;
 background-position: center;
 color: white;
 min-height: 60vh;
 display: flex;
 align-items: center;
 text-align: center;
 padding: 140px 0 80px;
}
.hero-title {
 color: white;
 margin-bottom: 16px;
}
.hero-subtitle {
 font-size: 1.25rem;
 max-width: 700px;
 margin: 0 auto 32px;
 opacity: 0.9;
}
.hero-actions {
 display: flex;
 gap: 16px;
 justify-content: center;
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 12px 28px;
 font-weight: 500;
 border-radius: var(--radius-md);
 border: 2px solid transparent;
 cursor: pointer;
 transition: var(--transition);
 text-align: center;
}
.btn-primary {
 background-color: var(--primary-color);
 color: white;
 border-color: var(--primary-color);
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 border-color: var(--primary-dark);
 transform: translateY(-2px);
 color: white;
}
.btn-secondary {
 background-color: transparent;
 color: var(--primary-color);
 border-color: var(--primary-color);
}
.btn-secondary:hover {
 background-color: var(--primary-color);
 color: white;
 transform: translateY(-2px);
}
.btn-white {
 background-color: white;
 color: var(--secondary-color);
 border-color: white;
}
.btn-white:hover {
 background-color: var(--bg-light);
 color: var(--secondary-color);
 border-color: var(--bg-light);
 transform: translateY(-2px);
}
.btn.full-width {
 width: 100%;
}
.btn-sm {
 padding: 8px 16px;
 font-size: 0.9rem;
}

/* Section Header */
.section-header {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 50px;
}
.section-label {
 display: inline-block;
 background-color: var(--primary-color);
 color: white;
 padding: 4px 12px;
 border-radius: 16px;
 font-size: 0.8rem;
 font-weight: 700;
 margin-bottom: 16px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.section-title {
 margin-bottom: 16px;
}
.section-subtitle {
 font-size: 1.1rem;
 color: var(--text-light);
}

/* Grids */
.grid-2 { display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: 30px; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 30px; grid-template-columns: repeat(4, 1fr); }

/* Card */
.card {
 background-color: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 overflow: hidden;
 transition: var(--transition);
 display: flex;
 flex-direction: column;
}
.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}
.card-image {
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.card-body {
 padding: 24px;
 display: flex;
 flex-direction: column;
 flex-grow: 1;
}
.card-title {
 margin-bottom: 12px;
}
.card-text {
 margin-bottom: 24px;
 flex-grow: 1;
}
.card-button {
 display: inline-block;
 font-weight: 500;
 color: var(--primary-color);
 align-self: flex-start;
}
.card-button:hover {
 text-decoration: underline;
}

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
}
.media-object.reverse {
 grid-template-columns: 1fr 1fr;
}
.media-object.reverse .media-visual {
 order: 2;
}
.media-object.reverse .media-copy {
 order: 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 .section-title {
 font-size: clamp(1.8rem, 3vw, 2.25rem);
}
.media-copy ul {
 list-style: none;
 padding-left: 0;
 margin: 24px 0;
}
.media-copy li {
 padding-left: 28px;
 position: relative;
 margin-bottom: 12px;
}
.media-copy li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--primary-color);
 font-weight: 700;
}

/* Testimonials */
.testimonial-card {
 background-color: var(--bg-white);
 padding: 24px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 border-top: 4px solid var(--primary-color);
}
.testimonial-text {
 font-style: italic;
 margin-bottom: 20px;
}
.testimonial-author {
 display: flex;
 align-items: center;
 gap: 16px;
}
.avatar {
 width: 50px;
 height: 50px;
 border-radius: 50%;
 object-fit: cover;
}
.author-name {
 font-size: 1rem;
 margin-bottom: 0;
}
.author-title {
 font-size: 0.9rem;
 color: var(--text-muted);
}

/* CTA Section */
.cta-section {
 background-color: var(--secondary-color);
 background-image: linear-gradient(45deg, var(--secondary-color), #4b5563);
 color: white;
 padding: 80px 0;
 text-align: center;
}
.cta-title {
 color: white;
 margin-bottom: 16px;
}
.cta-text {
 max-width: 600px;
 margin: 0 auto 32px;
 font-size: 1.1rem;
 opacity: 0.9;
}

/* Page Header */
.page-header-section {
 background-color: var(--secondary-color);
 color: white;
 text-align: center;
 padding: 120px 0 60px;
}
.page-header-section h1 { color: white; }
.page-header-section p { font-size: 1.1rem; max-width: 600px; margin: 16px auto 0; opacity: 0.9; }

/* Pricing Cards */
.pricing-card {
 text-align: center;
}
.pricing-card.featured {
 background: var(--secondary-color);
 color: white;
 transform: scale(1.05);
}
.pricing-card.featured .card-title, 
.pricing-card.featured .pricing-description {
 color: white;
}
.featured-badge {
 background-color: var(--primary-color);
 color: white;
 padding: 4px 12px;
 border-radius: 16px;
 font-size: 0.8rem;
 font-weight: 700;
 position: absolute;
 top: -15px;
 left: 50%;
 transform: translateX(-50%);
}
.pricing-features {
 list-style: none;
 margin: 24px 0;
 text-align: left;
}
.pricing-features li {
 margin-bottom: 12px;
 padding-left: 24px;
 position: relative;
}
.pricing-features li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--primary-color);
}
.pricing-card.featured .pricing-features li,
.pricing-card.featured .pricing-features li::before {
 color: #d1d5db;
}

/* FAQ */
.faq-container {
 max-width: 800px;
 margin: 0 auto;
}
.faq-item {
 background: white;
 border-radius: var(--radius-md);
 padding: 20px;
 margin-bottom: 16px;
 box-shadow: var(--shadow-sm);
}
.faq-question {
 font-size: 1.2rem;
 margin-bottom: 10px;
 cursor: pointer;
}
.faq-answer {
 line-height: 1.7;
}

/* Team */
.team-card {
 text-align: center;
 background: white;
 padding: 24px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 16px;
 border: 4px solid var(--bg-light);
}
.team-name { font-size: 1.25rem; margin-bottom: 4px; }
.team-role { color: var(--primary-color); font-weight: 500; margin-bottom: 12px; }
.team-bio { font-size: 0.9rem; }

/* Value Cards */
.value-card {
 background: white;
 padding: 24px;
 border-radius: var(--radius-lg);
 border-left: 4px solid var(--primary-color);
 box-shadow: var(--shadow-md);
}
.value-card h4 { margin-bottom: 8px; }

/* Video Cards */
.video-card {
 position: relative;
 cursor: pointer;
}
.video-card img {
 border-radius: var(--radius-lg);
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.play-button-overlay {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 70px;
 height: 70px;
 background: rgba(255,255,255,0.8);
 color: var(--primary-color);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 2rem;
 transition: var(--transition);
}
.video-card:hover .play-button-overlay {
 transform: translate(-50%, -50%) scale(1.1);
 background: rgba(255,255,255,1);
}
.video-card h3 {
 position: absolute;
 bottom: 20px;
 left: 20px;
 color: white;
 text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
 font-size: 1.3rem;
 margin: 0;
}

/* Contact Page */
.contact-layout {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 50px;
}
.form-group {
 margin-bottom: 20px;
}
.form-control {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
 font-family: var(--font-main);
 transition: var(--transition);
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.2);
}
label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
}
.contact-info-item {
 margin-bottom: 24px;
}
.contact-info-item h4 {
 margin-bottom: 8px;
 color: var(--primary-color);
}
.contact-info-item p {
 margin: 0;
}
.contact-info-item a { color: var(--text-light); }
.contact-info-item a:hover { color: var(--primary-color); }
.map-container {
 width: 100%;
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
}

/* Legal Pages */
.legal-page { padding: 120px 0 80px; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { margin-bottom: 16px; }
.legal-page p { margin-bottom: 16px; line-height: 1.7; }
.legal-page section { margin-bottom: 32px; }
.legal-page h2 { margin-bottom: 16px; padding-top: 16px; border-top: 1px solid var(--border-color); }
.legal-page ul { margin-left: 20px; margin-bottom: 16px; }
.legal-page table {
 width: 100%;
 margin-bottom: 24px;
 border-collapse: collapse;
}
.legal-page th, .legal-page td {
 border: 1px solid var(--border-color);
 padding: 12px;
 text-align: left;
}
.legal-page th {
 background-color: var(--bg-light);
}

/* Footer */
.footer {
 background-color: var(--secondary-color);
 color: #d1d5db;
 padding: 60px 0 30px;
 margin-top: 80px;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 16px;
 display: block;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 20px;
 text-transform: uppercase;
}
.footer-links {
 list-style: none;
}
.footer-links li {
 margin-bottom: 12px;
}
.footer-links a, .footer-contact a {
 color: #d1d5db;
}
.footer-links a:hover, .footer-contact a:hover {
 color: white;
 text-decoration: underline;
}
.footer-contact p { margin-bottom: 12px; }
.footer-hours { font-size: 0.9rem; line-height: 1.6; }
.footer-bottom {
 border-top: 1px solid #4b5563;
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.85rem;
 color: #9ca3af;
}
.footer-legal-links a {
 color: #9ca3af;
 margin-left: 16px;
}
.footer-legal-links a:hover {
 color: white;
}

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: var(--secondary-color);
 color: white;
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
 box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
#cookie-banner p { margin: 0; }
#cookie-banner a { color: var(--bg-light); text-decoration: underline; }
#cookie-banner div { display: flex; gap: 10px; }

/* Form validation styles */
.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;
}
.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); }
}

/* Responsive */
@media (max-width: 992px) {
 .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
 .media-object, .media-object.reverse { grid-template-columns: 1fr; }
 .media-object.reverse .media-visual { order: 1; }
 .media-object.reverse .media-copy { order: 2; }
}

@media (max-width: 768px) {
 h1 { font-size: 2.2rem; }
 h2 { font-size: 1.8rem; }
 
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 background-color: var(--secondary-color);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 40px;
 transform: translateX(100%);
 transition: transform 0.4s ease-in-out;
 }
 .nav-links.active {
 transform: translateX(0);
 }
 .nav-links a {
 color: white;
 font-size: 1.5rem;
 }
 .nav-toggle.active span:nth-child(1) {
 transform: translateY(8px) rotate(45deg);
 }
 .nav-toggle.active span:nth-child(2) {
 opacity: 0;
 }
 .nav-toggle.active span:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
 }
 .nav-toggle.active span {
 background-color: white;
 }

 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
 .pricing-card.featured { transform: scale(1); }

 .contact-layout { grid-template-columns: 1fr; }
 
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 16px; }
 
 #cookie-banner {
 flex-direction: column;
 text-align: center;
 }
}