/* Combined styles for QSASP site */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1.5rem 2rem;
    background: rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffd700;
}
.main-nav {
    display: flex;
    gap: 2rem;
}
.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.nav-link:hover {
    color: #ffd700;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.hero {
    text-align: center;
    padding: 4rem 0;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.intro-paragraph {
    font-size: 1.2rem;
    margin: 2rem 0;
    text-align: center;
    opacity: 0.95;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.feature {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}
.feature h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}
.api-status {
    background: rgba(0,255,0,0.2);
    padding: 1rem;
    border-radius: 5px;
    margin: 2rem 0;
    text-align: center;
}
.footer {
    text-align: center;
    margin-top: 3rem;
    opacity: 0.8;
}
.services-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 2.5rem;
}
.service-section {
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.service-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}
.service-desc {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}
.enquire-btn {
    background: #ffd700;
    color: #333;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.enquire-btn:hover {
    background: #e6c200;
}
.contact-container {
    max-width: 500px;
    margin: 4rem auto;
    background: rgba(255,255,255,0.08);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
label {
    font-weight: 500;
    margin-bottom: 0.3rem;
}
input, select, textarea {
    padding: 0.7rem;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
}
input, select {
    background: rgba(255,255,255,0.85);
    color: #333;
}
textarea {
    background: rgba(255,255,255,0.85);
    color: #333;
    resize: vertical;
    min-height: 80px;
}
button {
    background: #ffd700;
    color: #333;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 0.9rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover {
    background: #e6c200;
}
.success, .error {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
}
.success {
    color: #00ff99;
}
.error {
    color: #ff3333;
}
