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

:root {
--primary-color: #1a3a52;
--secondary-color: #c9a961;
--accent-color: #8b6f47;
--text-dark: #1a1a1a;
--text-light: #666;
--bg-light: #f9f7f4;
--white: #ffffff;
--border-color: #e5e1dc;
--shadow: 0 2px 12px rgba(0,0,0,0.08);
--shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

body {
font-family: 'Karla', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text-dark);
background: var(--white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 0.8rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--primary-color);
color: var(--white);
padding: 18px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
}

.privacy-popup.show {
transform: translateY(0);
}

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

.privacy-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 250px;
}

.privacy-actions {
display: flex;
gap: 12px;
}

.btn-accept, .btn-learn {
padding: 8px 20px;
border-radius: 4px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
border: none;
transition: all 0.3s ease;
}

.btn-accept {
background: var(--secondary-color);
color: var(--text-dark);
}

.btn-accept:hover {
background: var(--accent-color);
color: var(--white);
}

.btn-learn {
background: transparent;
color: var(--white);
border: 1px solid var(--white);
}

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

.header {
background: var(--white);
padding: 15px 0;
border-bottom: 1px solid var(--border-color);
position: sticky;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}

.header.scrolled {
box-shadow: var(--shadow);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--primary-color);
letter-spacing: -0.5px;
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--primary-color);
transition: all 0.3s ease;
}

.nav {
display: flex;
gap: 30px;
}

.nav-link {
color: var(--text-dark);
font-size: 14px;
font-weight: 500;
position: relative;
padding: 5px 0;
}

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

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

.hero-modern {
padding: 0;
background: var(--bg-light);
}

.hero-split {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: 700px;
align-items: center;
max-width: 1400px;
margin: 0 auto;
}

.hero-left {
padding: 60px 80px 60px 60px;
}

.hero-badge {
display: inline-block;
background: var(--secondary-color);
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 1.5rem;
letter-spacing: 0.5px;
}

.hero-left h1 {
font-size: 3rem;
line-height: 1.2;
margin-bottom: 1.5rem;
color: var(--primary-color);
}

.hero-left p {
font-size: 1.1rem;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 2.5rem;
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-bottom: 2.5rem;
padding: 25px 0;
border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
}

.stat-item {
text-align: center;
}

.stat-number {
font-size: 2rem;
font-weight: 700;
color: var(--secondary-color);
font-family: 'Playfair Display', serif;
margin-bottom: 0.3rem;
}

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

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

.btn-outline {
display: inline-block;
padding: 12px 32px;
border-radius: 4px;
font-weight: 500;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid var(--primary-color);
background: transparent;
color: var(--primary-color);
}

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

.hero-right {
position: relative;
height: 100%;
min-height: 700px;
}

.hero-image-wrapper {
position: relative;
height: 100%;
overflow: hidden;
}

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

.hero-float-card {
position: absolute;
bottom: 40px;
left: 40px;
background: var(--white);
padding: 20px 25px;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
display: flex;
align-items: center;
gap: 15px;
max-width: 280px;
}

.hero-float-card i {
font-size: 2rem;
color: var(--secondary-color);
}

.hero-float-card strong {
display: block;
font-size: 14px;
color: var(--primary-color);
margin-bottom: 3px;
}

.hero-float-card span {
font-size: 12px;
color: var(--text-light);
}

.btn-primary, .btn-secondary, .btn-product, .btn-submit {
display: inline-block;
padding: 12px 32px;
border-radius: 4px;
font-weight: 500;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
border: none;
}

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

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

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

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

.features {
padding: 70px 0;
background: var(--bg-light);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.feature-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
box-shadow: var(--shadow);
}

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

.feature-card i {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: 1rem;
}

.feature-card h3 {
margin-bottom: 0.8rem;
color: var(--primary-color);
}

.feature-card p {
font-size: 14px;
color: var(--text-light);
margin: 0;
}

.showcase {
padding: 70px 0;
}

.showcase-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.showcase-text h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.showcase-text p {
color: var(--text-light);
margin-bottom: 1.2rem;
}

.showcase-features {
margin: 1.5rem 0;
}

.feature-point {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
font-size: 15px;
color: var(--text-dark);
}

.feature-point i {
color: var(--secondary-color);
font-size: 1.1rem;
}

.showcase-image {
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow-hover);
}

.products {
padding: 70px 0;
background: var(--bg-light);
text-align: center;
}

.products h2 {
color: var(--primary-color);
margin-bottom: 3rem;
}

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

.product-card {
background: var(--white);
padding: 35px 25px;
border-radius: 8px;
box-shadow: var(--shadow);
transition: all 0.3s ease;
}

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

.product-icon {
width: 70px;
height: 70px;
margin: 0 auto 1.5rem;
background: var(--bg-light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.product-icon i {
font-size: 2rem;
color: var(--accent-color);
}

.product-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.product-card p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 1.5rem;
}

.product-price {
font-size: 1.6rem;
font-weight: 600;
color: var(--secondary-color);
margin-bottom: 1.5rem;
}

.btn-product {
background: var(--primary-color);
color: var(--white);
width: 100%;
}

.btn-product:hover {
background: var(--accent-color);
}

.process {
padding: 70px 0;
}

.process h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 3rem;
}

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

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

.step-number {
width: 60px;
height: 60px;
margin: 0 auto 1.2rem;
background: var(--secondary-color);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
font-weight: 700;
font-family: 'Playfair Display', serif;
}

.step h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.step p {
font-size: 14px;
color: var(--text-light);
margin: 0;
}

.testimonials {
padding: 70px 0;
background: var(--white);
}

.testimonials h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 3rem;
}

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

.testimonial-card {
background: var(--bg-light);
padding: 30px;
border-radius: 8px;
border-left: 4px solid var(--secondary-color);
}

.testimonial-stars {
color: var(--secondary-color);
font-size: 1.2rem;
margin-bottom: 1rem;
}

.testimonial-card p {
font-size: 15px;
line-height: 1.7;
color: var(--text-dark);
margin-bottom: 1.5rem;
font-style: italic;
}

.testimonial-author strong {
display: block;
color: var(--primary-color);
font-size: 14px;
margin-bottom: 3px;
}

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

.expertise {
padding: 70px 0;
background: var(--bg-light);
}

.expertise-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.expertise-text h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.expertise-text p {
color: var(--text-light);
margin-bottom: 1.5rem;
}

.expertise-list {
list-style: none;
margin: 1.5rem 0;
}

.expertise-list li {
margin-bottom: 15px;
color: var(--text-dark);
font-size: 15px;
line-height: 1.6;
}

.expertise-list strong {
color: var(--primary-color);
}

.expertise-image {
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow-hover);
}

.final-cta {
padding: 70px 0;
background: var(--primary-color);
color: var(--white);
}

.final-cta-content {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 50px;
align-items: center;
}

.cta-text h2 {
color: var(--white);
margin-bottom: 1rem;
}

.cta-text p {
font-size: 1.05rem;
opacity: 0.95;
margin: 0;
}

.cta-contact {
display: flex;
flex-direction: column;
gap: 20px;
}

.cta-contact-item {
display: flex;
align-items: center;
gap: 15px;
padding: 15px;
background: rgba(255,255,255,0.1);
border-radius: 6px;
}

.cta-contact-item i {
font-size: 1.5rem;
color: var(--secondary-color);
}

.cta-contact-item strong {
display: block;
font-size: 13px;
margin-bottom: 3px;
opacity: 0.9;
}

.cta-contact-item span {
font-size: 15px;
font-weight: 500;
}

.cta-contact .btn-primary {
margin-top: 10px;
width: 100%;
text-align: center;
}

.footer {
background: var(--primary-color);
color: var(--white);
padding: 25px 0;
font-size: 13px;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-links {
display: flex;
gap: 20px;
}

.footer-links a {
color: var(--white);
opacity: 0.9;
}

.footer-links a:hover {
opacity: 1;
text-decoration: underline;
}

.page-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
color: var(--white);
padding: 60px 20px;
text-align: center;
}

.page-hero h1 {
color: var(--white);
margin-bottom: 0.8rem;
}

.page-hero p {
font-size: 1.1rem;
opacity: 0.95;
margin: 0;
}

.blinds-types, .materials, .customization, .curtain-intro, .fabric-selection, .pleat-styles, .hardware {
padding: 70px 0;
}

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

.blinds-types h2, .materials h2, .customization h2, .curtain-intro h2, .fabric-selection h2, .pleat-styles h2, .hardware h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 3rem;
}

.types-grid, .fabric-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.type-card, .fabric-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
box-shadow: var(--shadow);
transition: all 0.3s ease;
}

.type-card:hover, .fabric-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-hover);
}

.type-card i, .fabric-card i {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: 1rem;
}

.type-card h3, .fabric-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.type-card p, .fabric-card p {
font-size: 14px;
color: var(--text-light);
margin: 0;
}

.materials-content, .intro-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.materials-text h2, .intro-text h2 {
text-align: left;
margin-bottom: 1.5rem;
}

.materials-text p, .intro-text p {
color: var(--text-light);
margin-bottom: 1.2rem;
}

.materials-list {
list-style: none;
margin: 1.5rem 0;
}

.materials-list li {
padding: 8px 0;
color: var(--text-light);
font-size: 14px;
display: flex;
align-items: center;
gap: 10px;
}

.materials-list i {
color: var(--secondary-color);
font-size: 1rem;
}

.materials-image, .intro-image {
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow-hover);
}

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

.custom-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.custom-item {
background: var(--white);
padding: 30px;
border-radius: 8px;
box-shadow: var(--shadow);
}

.custom-item h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.custom-item p {
font-size: 14px;
color: var(--text-light);
margin: 0;
}

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

.section-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 3rem;
color: var(--text-light);
}

.pleat-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 25px;
}

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

.pleat-item h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
font-size: 1.1rem;
}

.pleat-item p {
font-size: 14px;
color: var(--text-light);
margin: 0;
}

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

.hardware-content h2 {
margin-bottom: 1.5rem;
}

.hardware-content > p {
text-align: center;
max-width: 800px;
margin: 0 auto 3rem;
color: var(--text-light);
}

.hardware-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.hardware-item {
background: var(--white);
padding: 30px;
border-radius: 8px;
box-shadow: var(--shadow);
}

.hardware-item i {
font-size: 2rem;
color: var(--secondary-color);
margin-bottom: 1rem;
}

.hardware-item h4 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.hardware-item p {
font-size: 14px;
color: var(--text-light);
margin: 0;
}

.contact-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
color: var(--white);
padding: 60px 20px;
text-align: center;
}

.contact-hero h1 {
color: var(--white);
margin-bottom: 0.8rem;
}

.contact-hero p {
font-size: 1.1rem;
opacity: 0.95;
margin: 0;
}

.contact-main {
padding: 70px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.contact-info-section h2, .contact-form-section h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.contact-info-section > p {
color: var(--text-light);
margin-bottom: 2rem;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-detail {
display: flex;
gap: 20px;
}

.contact-detail i {
font-size: 1.5rem;
color: var(--secondary-color);
margin-top: 5px;
flex-shrink: 0;
}

.contact-detail h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
font-size: 1.1rem;
}

.contact-detail p {
color: var(--text-light);
font-size: 14px;
margin: 0;
}

.contact-form {
background: var(--bg-light);
padding: 35px;
border-radius: 8px;
box-shadow: var(--shadow);
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: var(--text-dark);
font-size: 14px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border-color);
border-radius: 4px;
font-family: 'Karla', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

.form-group textarea {
resize: vertical;
}

.checkbox-group {
margin-top: 20px;
}

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

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

.checkbox-label a {
color: var(--secondary-color);
text-decoration: underline;
}

.btn-submit {
background: var(--primary-color);
color: var(--white);
width: 100%;
margin-top: 10px;
}

.btn-submit:hover {
background: var(--accent-color);
}

.map-section {
padding: 70px 0;
background: var(--bg-light);
}

.map-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 2rem;
}

.map-container {
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow-hover);
}

.thankyou-section, .error-section {
padding: 100px 20px;
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
justify-content: center;
}

.thankyou-content, .error-content {
text-align: center;
max-width: 600px;
}

.thankyou-icon, .error-icon {
font-size: 5rem;
margin-bottom: 1.5rem;
}

.thankyou-icon {
color: #27ae60;
}

.error-icon {
color: #e74c3c;
}

.thankyou-content h1, .error-content h1 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.thankyou-message, .error-message {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1rem;
}

.thankyou-submessage, .error-submessage {
color: var(--text-light);
margin-bottom: 2rem;
}

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

.policy-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
color: var(--white);
padding: 60px 20px;
text-align: center;
}

.policy-hero h1 {
color: var(--white);
margin-bottom: 0.5rem;
}

.policy-hero p {
opacity: 0.9;
margin: 0;
}

.policy-content {
padding: 70px 0;
}

.policy-text {
max-width: 900px;
margin: 0 auto;
}

.policy-text h2 {
color: var(--primary-color);
margin-top: 2.5rem;
margin-bottom: 1.2rem;
}

.policy-text h3 {
color: var(--accent-color);
margin-top: 1.5rem;
margin-bottom: 1rem;
}

.policy-text p {
color: var(--text-light);
margin-bottom: 1rem;
}

.policy-text ul {
margin: 1rem 0 1.5rem 1.5rem;
color: var(--text-light);
}

.policy-text li {
margin-bottom: 0.5rem;
font-size: 14px;
}

.policy-text strong {
color: var(--text-dark);
}

@media (max-width: 768px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.1rem; }
body { font-size: 14px; }
.container { padding: 0 15px; }
.menu-toggle { display: flex; }
.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
gap: 0;
padding: 20px;
box-shadow: var(--shadow);
display: none;
}
.nav.active { display: flex; }
.nav-link { padding: 12px 0; border-bottom: 1px solid var(--border-color); }
.nav-link:last-child { border-bottom: none; }
.hero-modern { padding: 0; }
.hero-split { grid-template-columns: 1fr; min-height: auto; }
.hero-left { padding: 40px 20px; }
.hero-left h1 { font-size: 2rem; }
.hero-left p { font-size: 1rem; }
.hero-stats { grid-template-columns: repeat(3, 1fr); gap: 15px; padding: 20px 0; }
.stat-number { font-size: 1.5rem; }
.stat-label { font-size: 12px; }
.hero-right { min-height: 400px; }
.hero-float-card { left: 20px; bottom: 20px; padding: 15px 20px; max-width: calc(100% - 40px); }
.hero-float-card i { font-size: 1.5rem; }
.features { padding: 50px 0; }
.features-grid { gap: 20px; }
.showcase { padding: 50px 0; }
.showcase-content { grid-template-columns: 1fr; gap: 30px; }
.showcase-content .showcase-image { order: -1; }
.testimonials { padding: 50px 0; }
.testimonial-grid { gap: 20px; }
.expertise { padding: 50px 0; }
.expertise-content { grid-template-columns: 1fr; gap: 30px; }
.expertise-content .expertise-image { order: -1; }
.products { padding: 50px 0; }
.products h2 { margin-bottom: 2rem; }
.products-grid { gap: 20px; }
.process { padding: 50px 0; }
.process h2 { margin-bottom: 2rem; }
.final-cta { padding: 50px 0; }
.final-cta-content { grid-template-columns: 1fr; gap: 30px; }
.page-hero { padding: 40px 20px; }
.blinds-types, .materials, .customization, .curtain-intro, .fabric-selection, .pleat-styles, .hardware { padding: 50px 0; }
.materials-content, .intro-content { grid-template-columns: 1fr; gap: 30px; }
.intro-content .intro-image { order: -1; }
.contact-main { padding: 50px 0; }
.contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
.map-section { padding: 50px 0; }
.thankyou-section, .error-section { padding: 60px 20px; min-height: calc(100vh - 150px); }
.thankyou-icon, .error-icon { font-size: 4rem; }
.thankyou-actions, .error-actions { flex-direction: column; }
.thankyou-actions a, .error-actions a { width: 100%; text-align: center; }
.policy-content { padding: 50px 0; }
.footer-content { flex-direction: column; text-align: center; }
.footer-links { justify-content: center; }
}

@media (max-width: 480px) {
h1 { font-size: 1.6rem; }
h2 { font-size: 1.3rem; }
body { font-size: 13px; }
.hero-left h1 { font-size: 1.7rem; }
.hero-stats { grid-template-columns: 1fr; gap: 15px; }
.stat-number { font-size: 1.8rem; }
.btn-primary, .btn-secondary, .btn-product, .btn-submit, .btn-outline { padding: 10px 24px; font-size: 13px; }
.feature-card, .product-card, .type-card, .fabric-card, .custom-item, .hardware-item { padding: 20px; }
.contact-form { padding: 25px; }
.hero-buttons { flex-direction: column; }
.hero-buttons a { width: 100%; text-align: center; }
}

@media (min-width: 320px) and (max-width: 374px) {
.container { padding: 0 12px; }
h1 { font-size: 1.4rem; }
h2 { font-size: 1.2rem; }
body { font-size: 13px; }
.hero-modern { padding: 0; }
.hero-left { padding: 30px 15px; }
.hero-left h1 { font-size: 1.5rem; }
.hero-left p { font-size: 0.95rem; }
.hero-stats { grid-template-columns: 1fr; }
.hero-right { min-height: 350px; }
.hero-float-card { font-size: 12px; padding: 12px 15px; }
.features-grid, .products-grid, .types-grid, .fabric-grid, .custom-grid, .hardware-features, .testimonial-grid { grid-template-columns: 1fr; }
.btn-primary, .btn-secondary, .btn-outline { padding: 10px 20px; font-size: 13px; width: 100%; text-align: center; }
}
