@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e8925c;
    --accent-color: #f4d58d;
    --dark-color: #1a3a4a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #ddd;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }
h4 { font-size: 17px; }
h5 { font-size: 15px; }
h6 { font-size: 14px; }

p {
    margin-bottom: 10px;
    font-size: 14px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 40px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #d47a45;
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.section-title p {
    color: #666;
    font-size: 14px;
}

header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 15px 0;
    position: relative;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

nav ul li a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(255,255,255,0.15);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg, rgba(44,95,125,0.95) 0%, rgba(26,58,74,0.95) 100%), url('../pictures/image1.webp') center/cover no-repeat;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--white);
}

.hero p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero .btn {
    margin: 5px;
}

.features {
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card i {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.service-content p {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stats {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 13px;
    opacity: 0.9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: var(--dark-color);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.product-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d47a45 100%);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 20px;
}

.contact-info h2 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 20px;
    color: #666;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 6px;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 3px;
}

.info-item div h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.info-item div p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.contact-form {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 13px;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
}

.checkbox-group label {
    font-size: 12px;
    margin: 0;
}

.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section ul li i {
    margin-right: 8px;
    color: var(--secondary-color);
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    font-size: 11px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.privacy-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: bottom 0.4s ease;
}

.privacy-popup.show {
    bottom: 0;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.privacy-content p {
    font-size: 13px;
    margin: 0;
    flex: 1;
}

.privacy-content a {
    color: var(--accent-color);
}

.privacy-buttons {
    display: flex;
    gap: 10px;
}

.privacy-buttons .btn {
    padding: 8px 20px;
    font-size: 12px;
}

.error-container,
.thankyou-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.error-container i,
.thankyou-container i {
    font-size: 64px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.error-container h1,
.thankyou-container h1 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.error-container p,
.thankyou-container p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.policy-page {
    background: var(--white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.policy-content h1 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 30px;
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 22px;
}

.policy-content h3 {
    color: var(--dark-color);
    margin-top: 18px;
    margin-bottom: 10px;
}

.policy-content p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.policy-content ul {
    margin-bottom: 15px;
    padding-left: 25px;
}

.policy-content ul li {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.last-updated {
    font-style: italic;
    color: #777;
    font-size: 13px;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    
    .hero h1 { font-size: 32px; }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--dark-color);
        flex-direction: column;
        padding: 60px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        align-items: flex-start;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    section {
        padding: 30px 0;
    }
    
    .features-grid,
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .privacy-buttons {
        width: 100%;
        justify-content: stretch;
    }
    
    .privacy-buttons .btn {
        flex: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 24px; }
    h2 { font-size: 20px; }
    
    .hero h1 { font-size: 22px; }
    .hero p { font-size: 14px; }
    
    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    .logo {
        font-size: 1rem;
    }
    .section-title h2 {
        font-size: 22px;
    }
    
    .policy-content {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 20px; }
    h2 { font-size: 18px; }
    
    .hero h1 { font-size: 20px; }
    
    .container {
        padding: 0 10px;
    }
    
    .btn {
        padding: 7px 15px;
        font-size: 11px;
    }
}