/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #101730;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #C6A76E;
}

/* Header Styles */
.header {
    background-color: #101730;
    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;
}

.company-name {
    font-size: 2.2rem;
    color: #C6A76E;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0.1rem;
}

.motto {
    font-size: 0.9rem;
    color: #B58C3E;
    font-style: italic;
    font-weight: 300;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navigation a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navigation a:hover {
    background-color: #C6A76E;
    color: #101730;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #101730 0%, #1a2040 100%);
    padding: 2rem 0 6rem 0;
    text-align: center;
}

.hero-banner {
    width: 100%;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.banner-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.hero-content h2 {
    font-size: 3.5rem;
    color: #C6A76E;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #C6A76E;
    color: #101730;
}

.btn-primary:hover {
    background-color: #B58C3E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 167, 110, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #101730;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #0f1529;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #5D4037;
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #C6A76E;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #C6A76E;
    margin-bottom: 1rem;
}

.service-card p {
    color: #FDFDFE;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #101730;
}

.about-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #FDFDFE;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #C6A76E;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #FFFFFF;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Team Section */
.team {
    padding: 5rem 0;
    background-color: #0f1529;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: #5D4037;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member h3 {
    font-size: 1.4rem;
    color: #C6A76E;
    margin-bottom: 0.5rem;
}

.title {
    color: #B58C3E;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-member p {
    color: #FDFDFE;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credentials span {
    background-color: #101730;
    color: #C6A76E;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #101730;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #C6A76E;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    color: #FDFDFE;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    color: #FDFDFE;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item strong {
    color: #C6A76E;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #C6A76E;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #5D4037;
    border-radius: 8px;
    background-color: #FDFDFE;
    color: #101730;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C6A76E;
    box-shadow: 0 0 0 3px rgba(198, 167, 110, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #0a0f1f;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #C6A76E;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    color: #FDFDFE;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #FDFDFE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #C6A76E;
}

.footer-bottom {
    border-top: 1px solid #5D4037;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #A07865;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .banner-image {
        max-height: 200px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .company-name {
        font-size: 1.8rem;
    }
    
    .banner-image {
        max-height: 150px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .team-member {
        padding: 1.5rem;
    }
    
    .stats {
        gap: 1rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.team-member {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.service-card:hover h3,
.team-member:hover h3 {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}