/* css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a1a2a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: linear-gradient(135deg, #0f2c3d 0%, #1a3a4f 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffaa33;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.logo span {
    color: white;
    font-weight: normal;
    font-size: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffaa33;
    text-decoration: underline;
}

/* Main content */
main {
    min-height: 70vh;
    padding: 2rem 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffaa33;
    border-left: 4px solid #ffaa33;
    padding-left: 1rem;
}

h2 {
    font-size: 2rem;
    margin: 1.5rem 0 1rem;
    color: #ffaa33;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('banner.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 4rem 0;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero h1 {
    color: white;
    border-left: none;
    padding-left: 0;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
}

.btn {
    display: inline-block;
    background: #ffaa33;
    color: #0a1a2a;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: #1e2f3c;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: #ffaa33;
}

.product-card p {
    padding: 0 1rem 1rem;
    color: #ccc;
}

.price {
    display: block;
    padding: 0 1rem 1rem;
    font-weight: bold;
    color: #ffaa33;
    font-size: 1.2rem;
}

.product-card .btn {
    display: block;
    margin: 0 1rem 1rem;
    text-align: center;
    background: #ffaa33;
    color: #0a1a2a;
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.benefit-item {
    padding: 1.5rem;
    background: #1e2f3c;
    border-radius: 10px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #ffaa33;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    background: #10212e;
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 10px;
}

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

.testimonial-card {
    background: #1e2f3c;
    padding: 1.5rem;
    border-radius: 10px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: #ffaa33;
}

/* About / Contact */
.about-content, .contact-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-text, .contact-info {
    flex: 1 1 300px;
}

.about-image, .contact-image {
    flex: 1 1 300px;
}

.about-image img, .contact-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-details {
    list-style: none;
    margin-top: 1rem;
}

.contact-details li {
    margin-bottom: 0.5rem;
}

/* Contact form */
.contact-form {
    flex: 1 1 300px;
    background: #1e2f3c;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #3a5a6e;
    border-radius: 5px;
    background: #0a1a2a;
    color: white;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: #ffaa33;
    color: #0a1a2a;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #ffcc66;
}

/* FAQ */
.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #2a4a5e;
    padding-bottom: 1rem;
}

.faq-question {
    font-weight: bold;
    color: #ffaa33;
    cursor: pointer;
}

.faq-answer {
    margin-top: 0.5rem;
    color: #ccc;
}

/* Social links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ffaa33;
    color: #0a1a2a;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #05121c;
    color: #aaa;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}