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

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.1rem;
}

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

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

ul {
    list-style: none;
}

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

header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

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

.logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

nav a {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    padding: 8px 0;
    position: relative;
}

nav a:hover {
    color: #2c5f8d;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5f8d;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #fff;
    color: #2c5f8d;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.features {
    padding: 70px 0;
    background: #f8f9fa;
}

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

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #2c5f8d;
    margin-bottom: 18px;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.showcase {
    padding: 80px 0;
}

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

.showcase-text h2 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.showcase-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2c5f8d;
    font-weight: 600;
    margin-top: 15px;
    font-size: 15px;
}

.link-arrow:hover {
    gap: 12px;
}

.link-arrow i {
    font-size: 14px;
}

.showcase-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.products-preview {
    padding: 70px 0;
    background: #f8f9fa;
}

.products-preview h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.product-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2c5f8d, #4a7ba7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.product-item h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
    font-size: 1.2rem;
}

.product-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f8d;
    margin-top: 10px;
}

.process {
    padding: 80px 0;
}

.process h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 15px;
    font-family: 'Sora', sans-serif;
}

.step h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    font-size: 14px;
    color: #666;
}

.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 15px;
    color: #fff;
}

.cta-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: #fff;
    color: #2c5f8d;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #fff;
}

.footer-col p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 15px;
}

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

.products-detailed {
    padding: 70px 0;
}

.products-detailed h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.product-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5f8d, #4a7ba7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-detail-icon i {
    font-size: 2rem;
    color: #fff;
}

.product-detail-content h3 {
    margin-bottom: 8px;
    color: #1a1a1a;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 12px;
    display: block;
}

.product-detail-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.product-features i {
    color: #2c5f8d;
    font-size: 12px;
}

.benefits {
    padding: 70px 0;
    background: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-item i {
    font-size: 2.2rem;
    color: #2c5f8d;
    margin-bottom: 15px;
}

.benefit-item h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.benefit-item p {
    font-size: 14px;
    color: #666;
}

.materials-section {
    padding: 80px 0;
}

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

.materials-text h2 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.materials-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

.materials-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.curtain-intro {
    padding: 70px 0;
}

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

.intro-text h2 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

.intro-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.curtain-styles {
    padding: 70px 0;
    background: #f8f9fa;
}

.curtain-styles h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.style-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.style-card i {
    font-size: 2.2rem;
    color: #2c5f8d;
    margin-bottom: 15px;
}

.style-card h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.style-card p {
    font-size: 14px;
    color: #666;
}

.fabric-options {
    padding: 70px 0;
}

.fabric-options h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 15px;
}

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

.fabric-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5f8d;
}

.fabric-item h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.fabric-item p {
    font-size: 14px;
    color: #666;
}

.customisation {
    padding: 70px 0;
    background: #f8f9fa;
}

.customisation h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.option-group {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.option-group h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-group i {
    color: #2c5f8d;
}

.option-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-group li {
    font-size: 14px;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.option-group li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c5f8d;
    font-weight: 700;
}

.installation-service {
    padding: 80px 0;
}

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

.service-text h2 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

.service-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 8px;
    font-family: 'Sora', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.contact-hero {
    padding: 70px 0 50px;
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    color: #fff;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5f8d, #4a7ba7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.info-content h3 {
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.info-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.info-note {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-form-wrapper h2 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f8d;
}

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

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

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

.checkbox-label a {
    color: #2c5f8d;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2c5f8d, #4a7ba7);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 141, 0.3);
}

.map-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

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

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

.thankyou-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-icon i {
    font-size: 3rem;
    color: #fff;
}

.thankyou-content h1 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thankyou-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thankyou-note {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #2c5f8d, #4a7ba7);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 141, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background: #f8f9fa;
    color: #2c5f8d;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    border: 2px solid #2c5f8d;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c5f8d;
    color: #fff;
}

.error-number {
    font-size: 8rem;
    font-weight: 700;
    color: #e8e8e8;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
}

.error-content h1 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.error-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.error-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
}

.error-links p {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.error-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 14px;
    color: #2c5f8d;
    text-decoration: underline;
}

.policy-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
    color: #fff;
    text-align: center;
}

.policy-hero h1 {
    color: #fff;
    margin-bottom: 10px;
}

.policy-date {
    font-size: 14px;
    opacity: 0.9;
}

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

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

.policy-text h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 1.6rem;
}

.policy-text h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c5f8d;
    font-size: 1.2rem;
}

.policy-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.policy-text ul {
    margin: 15px 0 15px 25px;
}

.policy-text li {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    list-style: disc;
}

.policy-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.popup-content p {
    font-size: 14px;
    flex: 1;
}

.popup-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.popup-actions a {
    font-size: 13px;
    color: #fff;
    text-decoration: underline;
}

.popup-actions button {
    padding: 10px 25px;
    background: #fff;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.popup-actions button:hover {
    background: #2c5f8d;
    color: #fff;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .header-container {
        padding: 10px 20px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    nav a {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .showcase-content,
    .materials-content,
    .intro-content,
    .service-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .showcase-content .showcase-image,
    .materials-content .materials-image,
    .intro-content .intro-image {
        order: -1;
    }
    
    .product-grid,
    .feature-grid,
    .benefits-grid,
    .styles-grid,
    .fabric-grid,
    .custom-options {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .popup-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .popup-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .thankyou-actions,
    .error-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    body {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .feature-card,
    .product-item,
    .style-card {
        padding: 25px 15px;
    }
    
    .cta-btn,
    .cta-btn-secondary,
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .error-number {
        font-size: 5rem;
    }
}

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

.hero-label {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

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

.stat-item strong {
    font-size: 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.stat-item span {
    font-size: 13px;
    opacity: 0.9;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.mini-feature {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mini-feature strong {
    font-size: 15px;
    color: #1a1a1a;
}

.mini-feature span {
    font-size: 13px;
    color: #888;
}

.expertise {
    padding: 70px 0;
    background: #f8f9fa;
}

.expertise h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.expertise-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.expertise-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2c5f8d;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-author strong {
    font-size: 14px;
    color: #1a1a1a;
}

.testimonial-author span {
    font-size: 13px;
    color: #888;
}

.final-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
    color: #fff;
}

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

.final-cta-text h2 {
    margin-bottom: 20px;
    color: #fff;
}

.final-cta-text p {
    margin-bottom: 20px;
    opacity: 0.95;
    font-size: 15px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.cta-benefits li {
    font-size: 14px;
    padding-left: 25px;
    position: relative;
}

.cta-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.final-cta-action {
    text-align: center;
}

.cta-btn-large {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #2c5f8d;
    font-weight: 600;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
}

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

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-content p {
    font-size: 14px;
    flex: 1;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-content button {
    padding: 10px 25px;
    background: #fff;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.cookie-content button:hover {
    background: #2c5f8d;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item strong {
        font-size: 1.5rem;
    }
    
    .expertise-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}

.curtain-options {
    padding: 70px 0;
    background: #f8f9fa;
}

.curtain-options h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.option-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid #2c5f8d;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.option-card h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.option-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.curtain-types {
    padding: 70px 0;
}

.curtain-types h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.types-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.type-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5f8d;
}

.type-item h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.type-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item h3 {
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 1rem;
}

.info-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-form h2 {
    margin-bottom: 25px;
}

.hero-visual {
    display: none;
}

.hero-text {
    max-width: 100%;
    text-align: center;
}

@media (min-width: 992px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-visual {
        display: block;
    }
    
    .hero-image-wrap {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    
    .hero-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
