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

:root {
--primary-color: #1a4d6d;
--secondary-color: #c9a961;
--accent-color: #8b6f47;
--highlight-color: #e8d5b7;
--text-dark: #2d2d2d;
--text-light: #666;
--bg-light: #f9f7f4;
--white: #ffffff;
--border-color: #e0e0e0;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 14px;
line-height: 1.6;
color: var(--text-dark);
background: var(--white);
}

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

header {
background: var(--white);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
transform: translateY(0);
transition: transform 0.3s ease;
}

header.hidden {
transform: translateY(-100%);
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 15px;
}

.logo {
font-size: 18px;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}

.main-nav {
position: relative;
}

.nav-toggle {
display: none;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: var(--primary-color);
}

.nav-menu {
display: flex;
list-style: none;
gap: 20px;
}

.nav-menu li a {
text-decoration: none;
color: var(--text-dark);
font-size: 13px;
font-weight: 500;
padding: 8px 12px;
border-radius: 4px;
transition: all 0.3s;
}

.nav-menu li a:hover {
background: var(--primary-color);
color: var(--white);
}

.hero-modern {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, var(--primary-color) 0%, #2a5f7f 50%, var(--accent-color) 100%);
}

.hero-bg-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 1;
}

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.shape-1 {
width: 400px;
height: 400px;
background: var(--white);
top: -100px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--secondary-color);
bottom: -80px;
left: -80px;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--white);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.hero-content-wrapper {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
gap: 40px;
}

.hero-text {
color: var(--white);
max-width: 700px;
}

.hero-text h1 {
font-size: 42px;
font-weight: 800;
line-height: 1.2;
margin-bottom: 20px;
text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-text p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 30px;
opacity: 0.95;
color: var(--white);
}

.hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn-hero-primary {
background: var(--secondary-color);
color: var(--text-dark);
padding: 14px 32px;
border-radius: 6px;
text-decoration: none;
font-weight: 700;
font-size: 15px;
transition: all 0.3s;
display: inline-block;
}

.btn-hero-primary:hover {
background: var(--highlight-color);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-hero-secondary {
background: transparent;
color: var(--white);
padding: 14px 32px;
border-radius: 6px;
text-decoration: none;
font-weight: 700;
font-size: 15px;
border: 2px solid var(--white);
transition: all 0.3s;
display: inline-block;
}

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

.hero-stats {
display: flex;
gap: 40px;
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
gap: 5px;
}

.stat-number {
font-size: 36px;
font-weight: 800;
color: var(--secondary-color);
line-height: 1;
}

.stat-label {
font-size: 13px;
color: var(--white);
opacity: 0.9;
text-transform: uppercase;
letter-spacing: 1px;
}

.cta-button {
display: inline-block;
background: var(--accent-color);
color: var(--text-dark);
padding: 12px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
}

.cta-button:hover {
background: var(--white);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

section {
padding: 40px 15px;
}

section:nth-child(even) {
background: var(--bg-light);
}

h2 {
font-size: 26px;
margin-bottom: 20px;
color: var(--primary-color);
text-align: center;
}

h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--secondary-color);
}

p {
margin-bottom: 15px;
color: var(--text-light);
font-size: 14px;
}

.service-grid, .feature-list, .options-grid, .material-grid, .products-grid, .info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.service-item, .feature, .option-card, .material-card, .product-card, .info-card {
background: var(--white);
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.service-item:hover, .feature:hover, .option-card:hover, .material-card:hover, .product-card:hover, .info-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 30px;
}

.step {
text-align: center;
padding: 20px;
}

.step-number {
display: inline-block;
width: 50px;
height: 50px;
background: var(--primary-color);
color: var(--white);
border-radius: 50%;
line-height: 50px;
font-size: 20px;
font-weight: 700;
margin-bottom: 15px;
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.testimonial {
background: var(--white);
padding: 20px;
border-radius: 8px;
border-left: 4px solid var(--accent-color);
}

.testimonial cite {
display: block;
margin-top: 10px;
font-style: normal;
color: var(--secondary-color);
font-weight: 600;
font-size: 13px;
}

.intro-section {
padding: 60px 15px;
background: var(--white);
}

.intro-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.services-modern {
padding: 60px 15px;
background: var(--bg-light);
}

.services-grid-modern {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 40px;
}

.service-card-modern {
background: var(--white);
padding: 30px;
border-radius: 10px;
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
transition: all 0.3s;
border-top: 4px solid var(--primary-color);
}

.service-card-modern:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
font-size: 48px;
color: var(--secondary-color);
margin-bottom: 20px;
display: block;
}

.service-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
font-size: 14px;
display: inline-block;
margin-top: 15px;
transition: all 0.3s;
}

.service-link:hover {
color: var(--secondary-color);
transform: translateX(5px);
}

.why-choose {
padding: 60px 15px;
background: var(--white);
}

.why-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}

.why-item {
padding: 25px;
background: var(--bg-light);
border-radius: 8px;
border-left: 4px solid var(--accent-color);
}

.materials-showcase {
padding: 60px 15px;
background: var(--bg-light);
}

.section-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 40px;
font-size: 16px;
}

.materials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}

.material-showcase-item {
background: var(--white);
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.process-timeline {
padding: 60px 15px;
background: var(--white);
}

.timeline {
max-width: 900px;
margin: 40px auto 0;
position: relative;
}

.timeline::before {
content: '';
position: absolute;
left: 30px;
top: 0;
bottom: 0;
width: 2px;
background: var(--secondary-color);
}

.timeline-item {
position: relative;
padding-left: 80px;
margin-bottom: 40px;
}

.timeline-marker {
position: absolute;
left: 0;
width: 60px;
height: 60px;
background: var(--primary-color);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
box-shadow: 0 0 0 8px var(--white), 0 0 0 10px var(--secondary-color);
}

.timeline-content {
background: var(--bg-light);
padding: 25px;
border-radius: 8px;
}

.testimonials-modern {
padding: 60px 15px;
background: var(--bg-light);
}

.testimonials-slider {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 40px;
}

.testimonial-card {
background: var(--white);
padding: 30px;
border-radius: 10px;
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
display: flex;
flex-direction: column;
gap: 20px;
}

.testimonial-text p {
font-style: italic;
color: var(--text-light);
line-height: 1.7;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 5px;
}

.testimonial-author strong {
color: var(--text-dark);
font-size: 15px;
}

.testimonial-author span {
color: var(--text-light);
font-size: 13px;
}

.showroom-invite {
padding: 60px 15px;
background: var(--white);
}

.showroom-content {
max-width: 1000px;
margin: 0 auto;
}

.showroom-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
margin: 30px 0;
}

.info-block h4 {
font-size: 16px;
color: var(--primary-color);
margin-bottom: 10px;
}

.info-block p {
font-size: 14px;
line-height: 1.6;
}

.faq-section {
padding: 60px 15px;
background: var(--bg-light);
}

.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 40px;
}

.faq-item {
background: var(--white);
padding: 25px;
border-radius: 8px;
}

.faq-item h3 {
font-size: 16px;
color: var(--primary-color);
margin-bottom: 12px;
}

.final-cta {
padding: 80px 15px;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
text-align: center;
}

.final-cta-content h2 {
color: rgb(50, 50, 107);
font-size: 32px;
margin-bottom: 20px;
}

.final-cta-content p {
color: rgb(52, 52, 103);
opacity: 0.95;
max-width: 700px;
margin: 0 auto 30px;
font-size: 16px;
}

.cta-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

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

.info-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.info-item h3 {
font-size: 16px;
margin-bottom: 8px;
}

.info-item p {
font-size: 13px;
}

.page-hero {
background: var(--primary-color);
color: var(--white);
padding: 50px 15px;
text-align: center;
}

.page-hero h1 {
font-size: 30px;
margin-bottom: 10px;
}

.page-hero p {
color: var(--white);
opacity: 0.9;
}

.content-section {
padding: 40px 15px;
}

.btn-secondary {
display: inline-block;
background: var(--secondary-color);
color: var(--white);
padding: 10px 25px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 13px;
transition: all 0.3s;
margin-top: 15px;
}

.btn-secondary:hover {
background: var(--primary-color);
transform: translateY(-2px);
}

.custom-features, .properties-list {
margin-top: 30px;
}

.custom-item, .property-item {
margin-bottom: 25px;
padding: 15px;
background: var(--white);
border-radius: 6px;
}

.product-image {
width: 100%;
height: 250px;
overflow: hidden;
border-radius: 8px 8px 0 0;
}

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

.product-info {
padding: 20px;
}

.product-features ul {
list-style: none;
margin: 15px 0;
}

.product-features li {
padding: 6px 0;
padding-left: 20px;
position: relative;
font-size: 13px;
color: var(--text-light);
}

.product-features li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--primary-color);
font-weight: 700;
}

.product-price {
display: flex;
align-items: baseline;
gap: 8px;
margin: 20px 0;
}

.price {
font-size: 24px;
font-weight: 700;
color: var(--primary-color);
}

.price-note {
font-size: 13px;
color: var(--text-light);
}

.btn-primary {
display: inline-block;
background: var(--primary-color);
color: var(--white);
padding: 10px 25px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 13px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.btn-primary:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-top: 30px;
}

.contact-info .info-item {
margin-bottom: 25px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
margin-bottom: 5px;
font-weight: 600;
font-size: 13px;
color: var(--text-dark);
}

.form-group input,
.form-group textarea {
padding: 10px;
border: 1px solid var(--border-color);
border-radius: 4px;
font-size: 14px;
font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 8px;
font-size: 13px;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--primary-color);
}

.map-section {
padding: 40px 15px;
}

.map-container {
margin-top: 20px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thankyou-page, .error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 20px;
}

.thankyou-content, .error-content {
background: var(--white);
padding: 40px;
border-radius: 12px;
text-align: center;
max-width: 600px;
box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.thankyou-icon {
width: 80px;
height: 80px;
background: #4caf50;
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
margin: 0 auto 20px;
}

.error-code {
font-size: 80px;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 20px;
}

.thankyou-content h1, .error-content h1 {
font-size: 26px;
color: var(--primary-color);
margin-bottom: 15px;
}

.thankyou-content p, .error-content p {
color: var(--text-light);
margin-bottom: 20px;
}

.thankyou-info {
background: var(--bg-light);
padding: 15px;
border-radius: 6px;
margin: 20px 0;
}

.thankyou-actions, .error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-top: 25px;
}

.policy-page {
padding: 40px 15px;
}

.policy-page h1 {
font-size: 25px;
color: var(--primary-color);
margin-bottom: 10px;
}

.last-updated {
color: var(--text-light);
font-size: 13px;
margin-bottom: 30px;
}

.policy-section {
margin-bottom: 35px;
}

.policy-section h2 {
font-size: 22px;
text-align: left;
margin-bottom: 15px;
margin-top: 25px;
}

.policy-section h3 {
font-size: 16px;
margin-top: 20px;
}

.policy-section p {
margin-bottom: 12px;
}

.policy-section a {
color: var(--primary-color);
text-decoration: underline;
}

footer {
background: var(--text-dark);
color: var(--white);
padding: 40px 15px 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.footer-section h4 {
font-size: 16px;
margin-bottom: 15px;
color: var(--accent-color);
}

.footer-section p {
font-size: 13px;
color: #ccc;
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 8px;
}

.footer-section ul li a {
color: #ccc;
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

.footer-section ul li a:hover {
color: var(--accent-color);
}

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid #444;
}

.footer-bottom p {
font-size: 12px;
color: #999;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.95);
color: var(--white);
padding: 20px;
z-index: 9999;
display: none;
}

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}

.privacy-content p {
color: var(--white);
margin: 0;
font-size: 13px;
}

.privacy-content button {
background: var(--accent-color);
color: var(--text-dark);
border: none;
padding: 10px 25px;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
font-size: 13px;
white-space: nowrap;
}

.privacy-content button:hover {
background: var(--white);
}

@media (max-width: 768px) {
.nav-toggle {
display: block;
}

.nav-menu {
position: absolute;
top: 100%;
right: 0;
background: var(--white);
flex-direction: column;
width: 200px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
display: none;
padding: 10px 0;
}

.nav-menu.active {
display: flex;
}

.nav-menu li a {
display: block;
padding: 10px 20px;
}

.hero-modern {
min-height: 70vh;
padding: 40px 15px;
}

.hero-text h1 {
font-size: 32px;
}

.hero-text p {
font-size: 16px;
}

.hero-stats {
gap: 25px;
}

.stat-number {
font-size: 28px;
}

h2 {
font-size: 24px;
}

.contact-wrapper {
grid-template-columns: 1fr;
}

.service-grid, .feature-list, .options-grid, .material-grid, .products-grid, .services-grid-modern, .why-grid, .materials-grid, .testimonials-slider, .faq-grid {
grid-template-columns: 1fr;
}

.process-steps {
grid-template-columns: 1fr;
}

.timeline::before {
left: 20px;
}

.timeline-item {
padding-left: 60px;
}

.timeline-marker {
width: 50px;
height: 50px;
font-size: 20px;
}

.showroom-info {
grid-template-columns: 1fr;
}

.footer-content {
grid-template-columns: 1fr;
}

.privacy-content {
flex-direction: column;
text-align: center;
}

.thankyou-content, .error-content {
padding: 30px 20px;
}

.error-code {
font-size: 60px;
}

.shape-1 {
width: 250px;
height: 250px;
}

.shape-2 {
width: 200px;
height: 200px;
}

.shape-3 {
width: 150px;
height: 150px;
}
}

@media (max-width: 480px) {
body {
font-size: 13px;
}

.hero-modern {
min-height: 60vh;
padding: 30px 15px;
}

.hero-text h1 {
font-size: 26px;
}

.hero-text p {
font-size: 15px;
}

.hero-buttons {
flex-direction: column;
}

.btn-hero-primary, .btn-hero-secondary {
width: 100%;
text-align: center;
}

.hero-stats {
flex-direction: column;
gap: 20px;
}

.stat-number {
font-size: 24px;
}

section {
padding: 40px 15px;
}

h2 {
font-size: 22px;
}

h3 {
font-size: 16px;
}

.cta-button, .btn-primary, .btn-secondary {
padding: 10px 20px;
font-size: 13px;
}

.product-image {
height: 200px;
}

.price {
font-size: 20px;
}

.timeline::before {
left: 15px;
}

.timeline-item {
padding-left: 50px;
}

.timeline-marker {
width: 40px;
height: 40px;
font-size: 18px;
box-shadow: 0 0 0 5px var(--white), 0 0 0 7px var(--secondary-color);
}

.final-cta-content h2 {
font-size: 24px;
}

.shape-1, .shape-2, .shape-3 {
display: none;
}
}

@media (min-width: 320px) {
.container {
padding: 0 12px;
}
}
