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

:root {
 --primary-color: #ca8a04; /* Gold */
 --primary-dark: #a16207;
 --secondary-color: #374151; /* Elegant Charcoal */
 --bg-light: #fef3c720; /* Warm Beige tint */
 --bg-dark: #1f2937;
 --text-dark: #111827;
 --text-light: #4b5563;
 --text-muted: #6b7280;
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;

 --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Base Styles & Reset */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

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

body {
 font-family: var(--font-main);
 line-height: 1.6;
 color: var(--text-light);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

ul {
 list-style-position: inside;
 padding-left: 0;
}

/* Container */
.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 24px;
}

/* Header & Navigation */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.8);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}

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

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

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

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

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

.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: 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);
 font-weight: 600;
}

/* Mobile Menu */
.nav-toggle {
 display: none;
 cursor: pointer;
 background: none;
 border: none;
 z-index: 1100;
}

.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background: var(--secondary-color);
 margin: 6px 0;
 transition: all 0.4s ease;
}

.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);
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 14px 28px;
 border-radius: var(--radius-md);
 font-weight: 600;
 text-align: center;
 border: 2px solid transparent;
 transition: var(--transition);
 cursor: pointer;
}

.btn-primary {
 background-color: var(--primary-color);
 color: var(--bg-white);
 border-color: var(--primary-color);
}

.btn-primary:hover {
 background-color: var(--primary-dark);
 border-color: var(--primary-dark);
 color: var(--bg-white);
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}

.btn-secondary {
 background-color: transparent;
 color: var(--primary-color);
 border-color: var(--primary-color);
}

.btn-secondary:hover {
 background-color: var(--primary-color);
 color: var(--bg-white);
}

.btn-white {
 background: var(--bg-white);
 color: var(--primary-color);
 border-color: var(--bg-white);
}
.btn-white:hover {
 background-color: transparent;
 border-color: white;
 color: white;
}

/* Sections */
main {
 padding-top: 80px;
}

.section {
 padding: 80px 0;
}

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

.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: 6px 16px;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 600;
 margin-bottom: 16px;
}

.section-title {
 margin-bottom: 16px;
 color: var(--secondary-color);
}

.section-subtitle {
 font-size: 1.1rem;
 color: var(--text-muted);
}

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

/* Hero Section */
.hero-section {
 padding: 60px 0;
 background: var(--bg-light);
}

.hero-container {
 display: grid;
 grid-template-columns: 1fr;
 align-items: center;
 gap: 40px;
}

.hero-content {
 text-align: center;
}

.hero-tagline {
 font-weight: 600;
 color: var(--primary-color);
 text-transform: uppercase;
 letter-spacing: 1px;
 margin-bottom: 16px;
 display: block;
}

.hero-title {
 color: var(--secondary-color);
 margin-bottom: 16px;
}

.hero-description {
 max-width: 600px;
 margin: 0 auto 30px;
 font-size: 1.1rem;
}
.hero-buttons {
 display: flex;
 justify-content: center;
 gap: 16px;
}
.hero-image-container {
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
}

.hero-image {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

/* Stats Section */
.stats-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
 text-align: center;
}

.stat-card {
 padding: 30px;
}

.stat-number {
 font-size: 3.5rem;
 font-weight: 700;
 color: var(--primary-color);
 line-height: 1;
}

.stat-title {
 margin: 10px 0;
 color: var(--secondary-color);
}

/* Services / Cards */
.cards-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 30px;
}

.card {
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 overflow: hidden;
 display: flex;
 flex-direction: column;
}

.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}

.card-image-container {
 height: 200px;
 overflow: hidden;
}

.card-image-container img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.card-body {
 padding: 24px;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}

.card-title {
 margin-bottom: 12px;
 color: var(--secondary-color);
}

.card-text {
 flex-grow: 1;
 margin-bottom: 20px;
}

.card-button {
 display: inline-block;
 align-self: flex-start;
 padding: 10px 20px;
 border: 2px solid var(--primary-color);
 border-radius: var(--radius-md);
 color: var(--primary-color);
 font-weight: 600;
 text-decoration: none;
}
.card-button:hover {
 background: var(--primary-color);
 color: white;
}

/* Media Object Section */
.media-object {
 display: grid;
 align-items: center;
 gap: 50px;
 grid-template-columns: 1fr;
}
.media-visual {
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
}
.media-copy ul {
 margin: 20px 0;
 padding-left: 20px;
}
.media-copy ul li {
 margin-bottom: 10px;
}

/* Timeline Section */
.timeline {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
}

.timeline::after {
 content: '';
 position: absolute;
 width: 3px;
 background-color: var(--primary-color);
 opacity: 0.2;
 top: 0;
 bottom: 0;
 left: 50%;
 margin-left: -1.5px;
}

.timeline-step {
 padding: 10px 40px;
 position: relative;
 width: 50%;
}
.timeline-step:nth-child(odd) {
 left: 0;
 text-align: right;
}
.timeline-step:nth-child(even) {
 left: 50%;
}
.timeline-step::after {
 content: '';
 position: absolute;
 width: 20px;
 height: 20px;
 right: -10px;
 background-color: white;
 border: 4px solid var(--primary-color);
 top: 25px;
 border-radius: 50%;
 z-index: 1;
}
.timeline-step:nth-child(odd)::after {
 right: -10px;
}
.timeline-step:nth-child(even)::after {
 left: -10px;
}
.timeline-number {
 display: none;
}
.timeline-step h3 {
 color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
 background: linear-gradient(45deg, var(--secondary-color), var(--bg-dark));
 color: white;
 padding: 60px 0;
 text-align: center;
}
.cta-title {
 color: white;
 margin-bottom: 16px;
}
.cta-text {
 margin-bottom: 30px;
 opacity: 0.9;
}

/* Footer */
.footer {
 background: var(--secondary-color);
 color: #a0aec0;
 padding: 60px 0 30px;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 color: white;
 font-size: 1.5rem;
 font-weight: 700;
 margin-bottom: 12px;
 display: block;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
}
.footer-heading {
 color: white;
 font-size: 1.1rem;
 font-weight: 600;
 margin-bottom: 20px;
}
.footer-links, .footer-contact {
 list-style: none;
 padding: 0;
}
.footer-links li, .footer-contact li {
 margin-bottom: 12px;
}
.footer-links a, .footer-contact a {
 color: #a0aec0;
 transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover {
 color: white;
}
.footer-bottom {
 padding-top: 30px;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 16px;
 font-size: 0.9rem;
}

/* Page Specific styles */
/* About, Services, Contact etc */
.page-header-section {
 padding: 60px 0;
 text-align: center;
}
.page-header-section h1 { color: var(--secondary-color); }
.page-subtitle { max-width: 600px; margin: 16px auto 0; font-size: 1.1rem; }

.values-section .grid-3 {
 text-align: center;
}
.value-card {
 background: white;
 padding: 30px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
}
.value-card:hover { 
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
}
.value-card h3 { color: var(--secondary-color); margin-bottom: 10px; }

/* Team Section */
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
 gap: 30px;
 text-align: center;
}
.team-member-card img {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 margin: 0 auto 15px;
 object-fit: cover;
 box-shadow: var(--shadow-md);
}
.team-member-card h4 { color: var(--secondary-color); }
.team-member-card p { font-size: 0.9rem; color: var(--primary-color); }

/* Services Detailed */
.services-detailed-grid { gap: 40px; }
.service-detailed-card {
 background: white;
 border-radius: var(--radius-lg);
 padding: 30px;
 box-shadow: var(--shadow-sm);
}
.service-detailed-card img {
 border-radius: var(--radius-md);
 margin-bottom: 20px;
 height: 220px;
 width: 100%;
 object-fit: cover;
}
.service-detailed-card h3 { margin-bottom: 15px; color: var(--secondary-color);}
.service-detailed-card p { margin-bottom: 15px; }
.service-detailed-card ul { list-style: disc; padding-left: 20px;}
.service-detailed-card li { margin-bottom: 8px; }

/* Process Page */
.process-steps-container { display: flex; flex-direction: column; gap: 60px; }
.process-step-item { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.process-step-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.process-step-number { font-size: 3rem; font-weight: 700; color: var(--primary-color); opacity: 0.5; }
.process-step-content h3 { margin: 10px 0; color: var(--secondary-color); }

/* Contact Page */
.contact-page-layout {
 display: grid;
 grid-template-columns: 2fr 1.5fr;
 gap: 60px;
}

.contact-form .form-group {
 margin-bottom: 20px;
}
.form-group label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
 color: var(--text-dark);
}
.form-control {
 width: 100%;
 padding: 14px;
 border-radius: var(--radius-md);
 border: 1px solid var(--border-color);
 transition: var(--transition);
 font-family: var(--font-main);
 font-size: 1rem;
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.2);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.btn.full-width { width: 100%; }
.checkbox-group { display: flex; align-items: center; gap: 10px; }
.checkbox-group label { margin-bottom: 0; }
.checkbox-group a { text-decoration: underline; }

.contact-info-container .contact-info-item { margin-bottom: 30px; }
.contact-info-item h3 { color: var(--secondary-color); margin-bottom: 8px;}

/* Map Section */
.map-container {
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
}

/* Thank you page */
.thank-you-section {
 min-height: 60vh;
 display: flex;
 align-items: center;
 justify-content: center;
}
.text-center { text-align: center; }

/* Legal Pages */
.legal-page { padding: 40px 0 80px; }
.legal-page h1, .legal-page h2 {
 color: var(--secondary-color);
 margin: 40px 0 15px;
}
.legal-page h1:first-child { margin-top: 0; }
.legal-page p, .legal-page li {
 margin-bottom: 1em;
}
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin: 30px 0;
}
.cookie-table th, .cookie-table td {
 border: 1px solid var(--border-color);
 padding: 12px;
 text-align: left;
}
.cookie-table th {
 background-color: var(--bg-light);
 color: var(--secondary-color);
}

/* 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;
 animation: fadeIn 0.3s ease;
}

.spinner {
 display: inline-block;
 width: 18px;
 height: 18px;
 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); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--bg-dark);
 color: white;
 padding: 15px 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
}
.cookie-banner a { color: var(--primary-color); }
.cookie-buttons button {
 padding: 8px 12px;
 border: 1px solid white;
 background: transparent;
 color: white;
 cursor: pointer;
 border-radius: var(--radius-sm);
}
.cookie-buttons button:first-child { background: var(--primary-color); border-color: var(--primary-color); }

/* Responsive */
@media (min-width: 768px) {
 .grid-2 { grid-template-columns: repeat(2, 1fr); }
 .grid-3 { grid-template-columns: repeat(3, 1fr); }
 .grid-4 { grid-template-columns: repeat(4, 1fr); }

 .hero-container { grid-template-columns: 1fr 1fr; }
 .hero-content { text-align: left; }
 .hero-buttons { justify-content: flex-start; }
 .media-object { grid-template-columns: 1fr 1fr; }
 .media-object.reverse { grid-template-columns: 1fr 1fr; }
 .media-object.reverse .media-copy { order: -1; }

 .process-step-item { grid-template-columns: 1fr 1fr; }
 .process-step-item.reverse .process-step-image { order: 2; }
}

@media (max-width: 767px) {
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100vh;
 background-color: white;
 flex-direction: column;
 justify-content: center;
 gap: 40px;
 font-size: 1.5rem;
 transition: left 0.4s ease;
 }
 .nav-links.active { left: 0; }
 
 .timeline::after { left: 10px; margin-left: 0;}
 .timeline-step { width: 100%; padding-left: 40px; padding-right: 0; left: 0 !important; text-align: left !important;}
 .timeline-step::after { left: 1px; }

 .contact-page-layout { grid-template-columns: 1fr; }
 .footer-grid { text-align: center; }
 .footer-bottom { flex-direction: column; text-align: center;}
}