:root {
--color-primary: #FDFBF7;
--color-secondary: #2C2416;
--color-accent: #8B6914;
--color-accent-light: #B8860B;
--color-highlight: #C9A961;
--color-gold: #D4AF37;
--color-gold-dark: #B8941E;
--color-burgundy: #6B1C23;
--color-navy: #1A2332;
--color-dark: #1C1810;
--color-white: #FFFFFF;
--color-light-gray: #F9F6F0;
--color-medium-gray: #6B6356;
--color-border: #E8DCC8;
--color-overlay: rgba(28, 24, 16, 0.65);
--font-primary: 'Work Sans', sans-serif;
--font-display: 'Cormorant Garamond', serif;
--space-xs: 0.5rem;
--space-sm: 1rem;
--space-md: 1.5rem;
--space-lg: 2rem;
--space-xl: 3rem;
--space-2xl: 4rem;
--space-3xl: 5rem;
--radius-sm: 0.375rem;
--radius-md: 0.75rem;
--radius-lg: 1.25rem;
--radius-xl: 1.5rem;
--shadow-sm: 0 0.125rem 0.375rem rgba(139, 105, 20, 0.12);
--shadow-md: 0 0.5rem 1rem rgba(139, 105, 20, 0.18);
--shadow-lg: 0 1rem 2rem rgba(139, 105, 20, 0.22);
--shadow-xl: 0 1.5rem 3rem rgba(139, 105, 20, 0.28);
--transition-fast: 0.2s ease;
--transition-normal: 0.3s ease;
--transition-slow: 0.5s ease;
--max-width: 75rem;
--header-height: 5rem;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
font-size: 100%;
scroll-behavior: smooth;
}

body {
font-family: var(--font-primary);
font-size: 1rem;
line-height: 1.6;
color: var(--color-secondary);
background-color: var(--color-primary);
overflow-x: hidden;
}

body.menu-open {
overflow: hidden;
}

img {
max-width: 100%;
height: auto;
display: block;
}

a {
color: inherit;
text-decoration: none;
transition: color var(--transition-fast);
}

a:hover {
color: var(--color-highlight);
}

.container {
width: 100%;
max-width: var(--max-width);
margin: 0 auto;
padding: 0 var(--space-md);
}

.site-header {
background-color: var(--color-white);
box-shadow: var(--shadow-sm);
position: sticky;
top: 0;
z-index: 1000;
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: var(--space-sm) var(--space-md);
min-height: var(--header-height);
}

.logo-section {
flex: 0 0 auto;
}

.brand-logo {
font-family: var(--font-display);
font-size: 1.75rem;
font-weight: 700;
color: var(--color-dark);
letter-spacing: -0.02em;
transition: color var(--transition-fast);
}

.brand-logo:hover {
color: var(--color-accent);
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 0.375rem;
background: none;
border: none;
cursor: pointer;
padding: var(--space-xs);
z-index: 1001;
}

.menu-bar {
width: 1.5rem;
height: 0.125rem;
background-color: var(--color-secondary);
transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-toggle.active .menu-bar:nth-child(1) {
transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
transform: translateY(-0.5rem) rotate(-45deg);
}

.main-navigation {
flex: 1;
display: flex;
justify-content: flex-end;
}

.nav-list {
display: flex;
list-style: none;
gap: var(--space-md);
align-items: center;
}

.nav-link {
font-size: 0.9375rem;
font-weight: 500;
color: var(--color-secondary);
padding: var(--space-xs) var(--space-sm);
border-radius: var(--radius-sm);
transition: all var(--transition-fast);
position: relative;
}

.nav-link:hover,
.nav-link.active {
color: var(--color-highlight);
background-color: rgba(163, 177, 138, 0.1);
}

.main-content {
min-height: calc(100vh - var(--header-height));
}

.hero-section {
background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-teal) 100%);
padding: 6rem 0;
text-align: center;
position: relative;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-height: 70vh;
display: flex;
align-items: center;
}

.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(28, 24, 16, 0.70) 0%, rgba(107, 28, 35, 0.3) 50%, rgba(139, 105, 20, 0.50) 100%);
z-index: 1;
}

.hero-section .container {
position: relative;
z-index: 2;
}

.hero-content {
max-width: 50rem;
margin: 0 auto;
}

.hero-title {
font-family: var(--font-display);
font-size: 3rem;
font-weight: 700;
color: var(--color-white);
margin-bottom: var(--space-md);
line-height: 1.2;
}

.hero-text {
font-size: 1.25rem;
color: var(--color-white);
margin-bottom: var(--space-xl);
opacity: 0.95;
}

.hero-actions {
display: flex;
gap: var(--space-md);
justify-content: center;
flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
display: inline-block;
padding: 0.875rem 2rem;
border-radius: var(--radius-md);
font-weight: 600;
font-size: 0.9375rem;
transition: all var(--transition-fast);
cursor: pointer;
border: 0.125rem solid transparent;
}

.services-preview,
.why-choose,
.detailed-services,
.process-section,
.pricing-section,
.pricing-table-section,
.info-section,
.story-section,
.values-section,
.team-section,
.commitment-section,
.contact-section,
.map-section,
.directions-section {
padding: var(--space-3xl) 0;
}

.section-header {
text-align: center;
margin-bottom: var(--space-xl);
}

.section-title {
font-family: var(--font-display);
font-size: 2.5rem;
font-weight: 700;
color: var(--color-dark);
margin-bottom: var(--space-sm);
}

.section-subtitle {
font-size: 1.125rem;
color: var(--color-medium-gray);
}

.service-grid,
.features-grid,
.products-grid,
.info-grid,
.values-grid,
.expertise-grid,
.directions-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
gap: var(--space-lg);
}

.info-card,
.value-card,
.expertise-item,
.direction-card {
background-color: var(--color-white);
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
transition: all var(--transition-normal);
text-align: center;
border: 2px solid transparent;
}

.info-card:hover,
.value-card:hover,
.direction-card:hover {
transform: translateY(-0.375rem);
box-shadow: var(--shadow-lg);
border-color: var(--color-accent-light);
}

.value-icon {
width: 4rem;
height: 4rem;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent) 100%);
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--space-md);
box-shadow: var(--shadow-md);
}

.value-icon i {
font-size: 1.75rem;
color: var(--color-white);
}

.service-title,
.feature-title,
.value-title,
.expertise-title,
.direction-title {
font-family: var(--font-display);
font-size: 1.5rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-sm);
}

.service-description,
.feature-text,
.value-text,
.expertise-text,
.direction-text {
font-size: 0.9375rem;
color: var(--color-medium-gray);
line-height: 1.7;
}

.expertise-item i,
.direction-card i {
font-size: 2.5rem;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-burgundy) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: var(--space-md);
}

.cta-section {
background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-accent) 50%, var(--color-gold) 100%);
padding: var(--space-3xl) 0;
text-align: center;
position: relative;
overflow: hidden;
}

.cta-section::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 40rem;
height: 40rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
z-index: 0;
}

.cta-section::after {
content: '';
position: absolute;
bottom: -50%;
left: -10%;
width: 35rem;
height: 35rem;
background: rgba(255, 255, 255, 0.08);
border-radius: 50%;
z-index: 0;
}

.cta-section .container {
position: relative;
z-index: 1;
}

.cta-content {
max-width: 45rem;
margin: 0 auto;
}

.cta-title {
font-family: var(--font-display);
font-size: 2.5rem;
font-weight: 700;
color: var(--color-white);
margin-bottom: var(--space-md);
}

.cta-text {
font-size: 1.125rem;
color: var(--color-white);
margin-bottom: var(--space-xl);
opacity: 0.95;
}

.page-hero {
background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-teal) 100%);
padding: 5rem 0;
text-align: center;
position: relative;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-height: 50vh;
display: flex;
align-items: center;
}

.page-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(28, 24, 16, 0.6) 0%, rgba(139, 105, 20, 0.6) 100%);
z-index: 1;
}

.page-hero .container {
position: relative;
z-index: 2;
}

.page-title {
font-family: var(--font-display);
font-size: 3rem;
font-weight: 700;
color: var(--color-white);
margin-bottom: var(--space-sm);
}

.page-intro {
font-size: 1.125rem;
color: var(--color-white);
opacity: 0.95;
}

.detailed-services {
background-color: var(--color-light-gray);
}

.service-detail {
background-color: var(--color-white);
padding: var(--space-xl);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
margin-bottom: var(--space-lg);
display: flex;
gap: var(--space-lg);
align-items: flex-start;
}

.detail-icon {
flex: 0 0 4rem;
width: 4rem;
height: 4rem;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent) 100%);
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-md);
}

.detail-icon i {
font-size: 1.75rem;
color: var(--color-white);
}

.detail-content {
flex: 1;
}

.detail-title {
font-family: var(--font-display);
font-size: 2rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-md);
}

.detail-description {
font-size: 1rem;
color: var(--color-medium-gray);
margin-bottom: var(--space-md);
line-height: 1.7;
}

.detail-list {
list-style: none;
}

.list-item {
font-size: 0.9375rem;
color: var(--color-secondary);
padding: var(--space-xs) 0;
padding-left: var(--space-md);
position: relative;
}

.list-item:before {
content: '→';
position: absolute;
left: 0;
color: var(--color-highlight);
font-weight: 600;
}

.process-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
gap: var(--space-lg);
}

.process-step {
text-align: center;
}

.step-number {
width: 4rem;
height: 4rem;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-display);
font-size: 1.75rem;
font-weight: 700;
color: var(--color-white);
margin: 0 auto var(--space-md);
box-shadow: var(--shadow-md);
}

.step-title {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-sm);
}

.step-description {
font-size: 0.9375rem;
color: var(--color-medium-gray);
line-height: 1.6;
}

.products-grid {
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.product-card {
background-color: var(--color-white);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
overflow: hidden;
transition: all var(--transition-normal);
position: relative;
}

.product-card:hover {
transform: translateY(-0.375rem);
box-shadow: var(--shadow-lg);
}

.product-card.featured {
border: 0.125rem solid var(--color-highlight);
}

.product-badge {
position: absolute;
top: var(--space-md);
right: var(--space-md);
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-burgundy) 100%);
color: var(--color-white);
padding: var(--space-xs) var(--space-md);
border-radius: var(--radius-sm);
font-size: 0.8125rem;
font-weight: 600;
box-shadow: var(--shadow-md);
}

.product-header {
background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
padding: var(--space-xl);
text-align: center;
position: relative;
overflow: hidden;
}

.product-header::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 15rem;
height: 15rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
}

.product-title {
font-family: var(--font-display);
font-size: 1.75rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-md);
}

.product-price {
font-size: 3rem;
font-weight: 700;
color: var(--color-dark);
}

.price-amount {
font-family: var(--font-display);
}

.product-body {
padding: var(--space-xl);
}

.product-description {
font-size: 0.9375rem;
color: var(--color-medium-gray);
margin-bottom: var(--space-lg);
line-height: 1.7;
}

.product-features {
list-style: none;
margin-bottom: var(--space-xl);
}

.product-features .feature-item {
padding: var(--space-sm) 0;
font-size: 0.9375rem;
color: var(--color-secondary);
display: flex;
align-items: center;
gap: var(--space-sm);
background: none;
box-shadow: none;
border: none;
}

.product-features .feature-item i {
color: var(--color-highlight);
font-size: 1rem;
background: none;
-webkit-text-fill-color: currentColor;
margin-bottom: 0;
}

.product-btn {
display: block;
width: 100%;
padding: 0.875rem;
background-color: var(--color-dark);
color: var(--color-white);
text-align: center;
border-radius: var(--radius-md);
font-weight: 600;
transition: all var(--transition-fast);
}

.product-btn:hover {
background-color: var(--color-secondary);
transform: translateY(-0.125rem);
}

.pricing-intro {
text-align: center;
max-width: 50rem;
margin: 0 auto var(--space-xl);
}

.intro-text {
font-size: 1.125rem;
color: var(--color-medium-gray);
line-height: 1.7;
}

.table-wrapper {
overflow-x: auto;
margin-bottom: var(--space-lg);
}

.pricing-table {
width: 100%;
background-color: var(--color-white);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-sm);
border-collapse: collapse;
}

.pricing-table thead {
background-color: var(--color-accent);
}

.pricing-table th {
padding: var(--space-md);
text-align: left;
font-weight: 600;
color: var(--color-dark);
font-size: 0.9375rem;
}

.pricing-table td {
padding: var(--space-md);
border-bottom: 0.0625rem solid var(--color-border);
font-size: 0.9375rem;
color: var(--color-secondary);
}

.pricing-table tbody tr:last-child td {
border-bottom: none;
}

.pricing-table tbody tr:hover {
background-color: var(--color-light-gray);
}

.table-note {
text-align: center;
font-size: 0.875rem;
color: var(--color-medium-gray);
font-style: italic;
}

.info-title {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-sm);
}

.info-text {
font-size: 0.9375rem;
color: var(--color-medium-gray);
line-height: 1.7;
}

.story-content,
.commitment-content {
max-width: 50rem;
margin: 0 auto;
}

.story-text,
.commitment-text {
font-size: 1.0625rem;
color: var(--color-secondary);
line-height: 1.8;
margin-bottom: var(--space-lg);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-2xl);
}

.contact-info-area,
.contact-form-area {
background-color: var(--color-white);
padding: var(--space-xl);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
}

.info-heading,
.form-heading {
font-family: var(--font-display);
font-size: 2rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-md);
}

.info-intro,
.form-intro {
font-size: 1rem;
color: var(--color-medium-gray);
margin-bottom: var(--space-xl);
line-height: 1.7;
}

.contact-details {
display: flex;
flex-direction: column;
gap: var(--space-lg);
}

.detail-item {
display: flex;
gap: var(--space-md);
}

.contact-details .detail-icon {
flex: 0 0 3.5rem;
width: 3.5rem;
height: 3.5rem;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent) 100%);
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-md);
}

.contact-details .detail-icon i {
font-size: 1.25rem;
color: var(--color-white);
}

.detail-content {
flex: 1;
}

.detail-title {
font-weight: 600;
font-size: 0.9375rem;
color: var(--color-dark);
margin-bottom: 0.25rem;
}

.detail-text {
font-size: 0.9375rem;
color: var(--color-medium-gray);
line-height: 1.6;
}

.detail-link {
color: var(--color-highlight);
transition: color var(--transition-fast);
}

.detail-link:hover {
color: var(--color-dark);
text-decoration: underline;
}

.contact-form {
display: flex;
flex-direction: column;
gap: var(--space-md);
}

.form-group {
display: flex;
flex-direction: column;
}

.form-label {
font-size: 0.9375rem;
font-weight: 500;
color: var(--color-dark);
margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
padding: 0.75rem;
border: 0.0625rem solid var(--color-border);
border-radius: var(--radius-md);
font-family: var(--font-primary);
font-size: 0.9375rem;
transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
outline: none;
border-color: var(--color-highlight);
}

.form-textarea {
resize: vertical;
min-height: 8rem;
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: var(--space-sm);
cursor: pointer;
font-size: 0.875rem;
color: var(--color-medium-gray);
}

.form-checkbox {
margin-top: 0.25rem;
cursor: pointer;
}

.checkbox-text {
flex: 1;
line-height: 1.5;
}

.form-submit {
padding: 0.875rem;
background-color: var(--color-dark);
color: var(--color-white);
border: none;
border-radius: var(--radius-md);
font-weight: 600;
font-size: 0.9375rem;
cursor: pointer;
transition: all var(--transition-fast);
}

.form-submit:hover {
background-color: var(--color-secondary);
transform: translateY(-0.125rem);
}

.map-container {
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
margin-top: var(--space-lg);
}

.map-container iframe {
width: 100%;
height: 25rem;
border: none;
}

.thankyou-section {
padding: var(--space-3xl) 0;
}

.thankyou-content {
max-width: 45rem;
margin: 0 auto;
text-align: center;
background-color: var(--color-white);
padding: var(--space-2xl);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
}

.thankyou-icon {
font-size: 4rem;
color: var(--color-highlight);
margin-bottom: var(--space-lg);
}

.thankyou-title {
font-family: var(--font-display);
font-size: 2.5rem;
font-weight: 700;
color: var(--color-dark);
margin-bottom: var(--space-lg);
}

.thankyou-text {
font-size: 1.0625rem;
color: var(--color-medium-gray);
margin-bottom: var(--space-md);
line-height: 1.8;
}

.thankyou-link {
color: var(--color-highlight);
font-weight: 600;
}

.thankyou-actions {
display: flex;
gap: var(--space-md);
justify-content: center;
margin-top: var(--space-xl);
flex-wrap: wrap;
}

.thankyou-info {
max-width: 45rem;
margin: var(--space-xl) auto 0;
}

.info-subtitle {
font-family: var(--font-display);
font-size: 2rem;
font-weight: 600;
color: var(--color-dark);
text-align: center;
margin-bottom: var(--space-xl);
}

.steps-list {
display: flex;
flex-direction: column;
gap: var(--space-lg);
}

.step-item {
display: flex;
gap: var(--space-md);
background-color: var(--color-white);
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
}

.step-icon {
flex: 0 0 3.5rem;
width: 3.5rem;
height: 3.5rem;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent) 100%);
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-md);
}

.step-icon i {
font-size: 1.25rem;
color: var(--color-white);
}

.step-text {
flex: 1;
}

.step-heading {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-xs);
}

.step-description {
font-size: 0.9375rem;
color: var(--color-medium-gray);
line-height: 1.7;
}

.additional-info {
padding: var(--space-xl) 0;
background-color: var(--color-light-gray);
}

.info-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
gap: var(--space-lg);
}

.info-card-alt {
background-color: var(--color-white);
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
text-align: center;
}

.info-card-alt i {
font-size: 2.5rem;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-burgundy) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: var(--space-md);
}

.card-title {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-sm);
}

.card-text {
font-size: 0.9375rem;
color: var(--color-medium-gray);
}

.card-link {
color: var(--color-highlight);
font-weight: 600;
}

.policy-content {
padding: var(--space-2xl) 0;
}

.policy-text {
max-width: 50rem;
margin: 0 auto;
background-color: var(--color-white);
padding: var(--space-2xl);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
}

.policy-heading {
font-family: var(--font-display);
font-size: 2rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-md);
margin-top: var(--space-xl);
}

.policy-heading:first-child {
margin-top: 0;
}

.policy-subheading {
font-family: var(--font-display);
font-size: 1.5rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-sm);
margin-top: var(--space-lg);
}

.policy-paragraph {
font-size: 1rem;
color: var(--color-secondary);
line-height: 1.8;
margin-bottom: var(--space-md);
}

.policy-link {
color: var(--color-highlight);
font-weight: 500;
}

.policy-link:hover {
text-decoration: underline;
}

.site-footer {
background-color: var(--color-dark);
color: var(--color-white);
padding: var(--space-lg) 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--space-md);
flex-wrap: wrap;
gap: var(--space-md);
}

.footer-brand {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 600;
margin-bottom: var(--space-xs);
}

.footer-text {
font-size: 0.875rem;
opacity: 0.8;
}

.footer-nav {
display: flex;
gap: var(--space-md);
flex-wrap: wrap;
}

.footer-link {
font-size: 0.875rem;
color: var(--color-white);
opacity: 0.8;
transition: opacity var(--transition-fast);
}

.footer-link:hover,
.footer-link.active {
opacity: 1;
}

.footer-copyright {
text-align: center;
font-size: 0.8125rem;
opacity: 0.7;
padding-top: var(--space-md);
border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--color-dark);
color: var(--color-white);
padding: var(--space-md);
box-shadow: var(--shadow-lg);
z-index: 2000;
transform: translateY(100%);
transition: transform var(--transition-normal);
}

.privacy-popup.show {
transform: translateY(0);
}

.popup-content {
max-width: var(--max-width);
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--space-md);
flex-wrap: wrap;
}

.popup-text {
flex: 1;
font-size: 0.9375rem;
line-height: 1.6;
}

.popup-actions {
display: flex;
gap: var(--space-md);
align-items: center;
}

.popup-btn {
padding: 0.625rem var(--space-md);
background-color: var(--color-highlight);
color: var(--color-white);
border: none;
border-radius: var(--radius-sm);
font-weight: 600;
font-size: 0.875rem;
cursor: pointer;
transition: background-color var(--transition-fast);
}

.popup-btn:hover {
background-color: var(--color-accent);
color: var(--color-dark);
}

.popup-link {
font-size: 0.875rem;
color: var(--color-white);
text-decoration: underline;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 998;
opacity: 0;
transition: opacity var(--transition-normal);
}

.mobile-menu-overlay.active {
display: block;
opacity: 1;
}

/* Section Header Images */
.section-header-image {
width: 100%;
height: 20rem;
object-fit: cover;
border-radius: var(--radius-lg);
margin-bottom: var(--space-xl);
box-shadow: var(--shadow-lg);
}

.section-with-image {
position: relative;
}

.section-image-header {
width: 100%;
height: 25rem;
background-size: cover;
background-position: center;
border-radius: var(--radius-xl);
margin-bottom: var(--space-xl);
box-shadow: var(--shadow-xl);
position: relative;
overflow: hidden;
}

.section-image-header::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

/* Portfolio Section */
.portfolio-section {
padding: var(--space-3xl) 0;
background-color: var(--color-light-gray);
}

.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
gap: var(--space-lg);
margin-top: var(--space-xl);
}

.portfolio-item {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: all var(--transition-normal);
cursor: pointer;
background: var(--color-white);
}

.portfolio-item:hover {
transform: translateY(-0.5rem);
box-shadow: var(--shadow-xl);
}

.portfolio-image {
width: 100%;
height: 18rem;
object-fit: cover;
transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-image {
transform: scale(1.05);
}

.portfolio-content {
padding: var(--space-lg);
}

.portfolio-title {
font-family: var(--font-display);
font-size: 1.5rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-xs);
}

.portfolio-category {
font-size: 0.875rem;
color: var(--color-accent);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: var(--space-sm);
}

.portfolio-description {
font-size: 0.9375rem;
color: var(--color-medium-gray);
line-height: 1.6;
}

.portfolio-badge {
position: absolute;
top: var(--space-md);
right: var(--space-md);
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-burgundy) 100%);
color: var(--color-white);
padding: 0.5rem 1rem;
border-radius: var(--radius-md);
font-size: 0.8125rem;
font-weight: 600;
z-index: 2;
box-shadow: var(--shadow-md);
}

/* Enhanced Service Cards */
.service-card {
background-color: var(--color-white);
padding: var(--space-xl);
border-radius: var(--radius-xl);
box-shadow: var(--shadow-md);
transition: all var(--transition-normal);
text-align: center;
border: 2px solid transparent;
}

.service-card:hover {
transform: translateY(-0.5rem);
box-shadow: var(--shadow-xl);
border-color: var(--color-accent-light);
}

.service-icon {
width: 4rem;
height: 4rem;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent) 100%);
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--space-md);
box-shadow: var(--shadow-md);
}

.service-icon i {
font-size: 1.75rem;
color: var(--color-white);
}

/* Enhanced Buttons */
.btn-primary {
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent) 100%);
color: var(--color-white);
border-color: transparent;
box-shadow: var(--shadow-md);
position: relative;
overflow: hidden;
z-index: 1;
}

.btn-primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-burgundy) 100%);
transition: left var(--transition-normal);
z-index: -1;
}

.btn-primary:hover::before {
left: 0;
}

.btn-primary:hover {
transform: translateY(-0.125rem);
box-shadow: var(--shadow-lg);
}

.btn-secondary {
background-color: transparent;
color: var(--color-white);
border: 2px solid var(--color-white);
box-shadow: none;
}

.btn-secondary:hover {
background-color: var(--color-white);
color: var(--color-gold);
border-color: var(--color-white);
box-shadow: var(--shadow-md);
}

/* Enhanced Feature Items */
.feature-item {
background-color: var(--color-white);
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
transition: all var(--transition-normal);
text-align: center;
border: 2px solid transparent;
}

.feature-item:hover {
transform: translateY(-0.375rem);
box-shadow: var(--shadow-lg);
border-color: var(--color-accent-light);
}

.feature-item i {
font-size: 2.5rem;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-burgundy) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: var(--space-md);
}

@media (max-width: 62rem) {
.hero-title {
font-size: 2.5rem;
}
.section-title {
font-size: 2rem;
}
.cta-title {
font-size: 2rem;
}
}

@media (max-width: 48rem) {
:root {
--space-xl: 2.5rem;
--space-2xl: 3rem;
--space-3xl: 3.5rem;
}
.menu-toggle {
display: flex;
position: relative;
z-index: 1001;
}
.main-navigation {
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: var(--color-white);
box-shadow: var(--shadow-lg);
padding-top: var(--header-height);
visibility: hidden;
opacity: 0;
transform: translateY(-2rem);
transition: all var(--transition-normal);
z-index: 999;
max-height: 100vh;
overflow-y: auto;
display: block;
justify-content: center;
}
.main-navigation.active {
visibility: visible;
opacity: 1;
transform: translateY(0);
}
.nav-list {
flex-direction: column;
padding: var(--space-md);
gap: 0;
align-items: stretch;
}
.nav-item {
width: 100%;
border-bottom: 0.0625rem solid var(--color-border);
}
.nav-item:last-child {
border-bottom: none;
}
.nav-link {
display: block;
padding: var(--space-md);
text-align: center;
width: 100%;
border-radius: 0;
font-size: 1.125rem;
}
.nav-link:hover,
.nav-link.active {
background: linear-gradient(90deg, rgba(139, 105, 20, 0.1) 0%, rgba(201, 169, 97, 0.15) 100%);
color: var(--color-accent);
}
.hero-section {
min-height: 60vh;
padding: 4rem 0;
}
.hero-title {
font-size: 2rem;
}
.hero-text {
font-size: 1.125rem;
}
.section-title {
font-size: 1.75rem;
}
.page-title {
font-size: 2rem;
}
.page-hero {
min-height: 40vh;
padding: 3rem 0;
}
.cta-title {
font-size: 1.75rem;
}
.service-detail {
flex-direction: column;
}
.service-grid,
.features-grid,
.portfolio-grid {
grid-template-columns: 1fr;
gap: var(--space-md);
}
.contact-wrapper {
grid-template-columns: 1fr;
gap: var(--space-md);
}
.contact-info-area,
.contact-form-area {
padding: var(--space-lg);
}
.detail-item {
flex-direction: column;
align-items: flex-start;
gap: var(--space-sm);
text-align: left;
}
.contact-details .detail-icon {
flex: 0 0 3rem;
width: 3rem;
height: 3rem;
}
.form-group {
margin-bottom: var(--space-sm);
}
.products-grid {
grid-template-columns: 1fr;
}
.popup-content {
flex-direction: column;
text-align: center;
}
.section-image-header,
.section-header-image {
height: 15rem;
border-radius: var(--radius-md);
}
.portfolio-image {
height: 15rem;
}
}

@media (max-width: 30rem) {
:root {
--space-md: 0.875rem;
--space-lg: 1.25rem;
--space-xl: 2rem;
--space-2xl: 2.5rem;
--space-3xl: 3rem;
}
.container {
padding: 0 1rem;
}
.brand-logo {
font-size: 1.5rem;
}
.hero-section {
min-height: 50vh;
padding: 3rem 0;
}
.hero-title {
font-size: 1.75rem;
line-height: 1.3;
}
.hero-text {
font-size: 1rem;
}
.section-title {
font-size: 1.5rem;
}
.page-title {
font-size: 1.75rem;
}
.page-hero {
min-height: 35vh;
padding: 2.5rem 0;
}
.hero-actions,
.thankyou-actions {
flex-direction: column;
width: 100%;
gap: var(--space-sm);
}
.btn-primary,
.btn-secondary {
width: 100%;
padding: 1rem 1.5rem;
}
.section-image-header,
.section-header-image {
height: 12rem;
margin-bottom: var(--space-md);
}
.portfolio-image {
height: 12rem;
}
.service-card,
.portfolio-item,
.info-card,
.value-card {
padding: var(--space-md);
}
.contact-info-area,
.contact-form-area {
padding: var(--space-md);
}
.detail-item {
flex-direction: row;
align-items: center;
gap: var(--space-sm);
}
.contact-details .detail-icon {
flex: 0 0 2.5rem;
width: 2.5rem;
height: 2.5rem;
}
.contact-details .detail-icon i {
font-size: 1rem;
}
.detail-title {
font-size: 0.875rem;
}
.detail-text {
font-size: 0.875rem;
}
.form-label {
font-size: 0.875rem;
}
.form-input,
.form-textarea {
font-size: 0.875rem;
padding: 0.625rem;
}
.cta-section::before,
.cta-section::after {
display: none;
}
.map-container iframe {
height: 18rem;
}
}