@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Quicksand:wght@500;600;700&display=swap');

:root {
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f2e;
    --bg-card: #1e2433;
    --accent: #00bcd4;
    --accent-hover: #00e5ff;
    --text-primary: #f5f5f5;
    --text-secondary: #a0aec0;
    --border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Header Section */
header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 40px 20px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    border-bottom: 1px solid var(--border);
}

.logo-container {
    margin-bottom: 5px;
}

.logo {
    height: 300px;
    max-width: 300px;
    object-fit: contain;
}

.site-header {
    background: var(--bg-secondary);
    text-align: center;
    padding: 40px 20px 30px;
}

.logo-container img {
    max-width: 220px;
    height: auto;
}

/* Mission & Contact Banner */
.mission-contact-banner {
    background: var(--bg-secondary);
    padding: 40px 20px;
    margin-top: 0;
    border-top: 1px solid var(--border);
}

.mission-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-primary);
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    transform: scale(1.1);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

.social-icon.phone i {
    color: #4ade80;
}

.social-icon.facebook i {
    color: #60a5fa;
}

.social-icon.instagram i {
    color: #f472b6;
}

.phone-display {
    margin-top: 15px;
    font-size: 1.3rem;
    color: var(--accent) !important;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

section ul {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    color: var(--text-secondary);
}

section ul li {
    margin-bottom: 12px;
}

section ul li strong {
    color: var(--accent);
}

/* Services */
#services, #testimonials, #contact {
    padding: 60px 20px;
    background: var(--bg-secondary);
    margin: 30px auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid var(--border);
}

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

.service {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.15);
}

.service h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}

/* Meet the Team */
#meet-the-team {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-primary);
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    width: 280px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    margin-bottom: 20px;
}

.team-member h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 5px;
    color: var(--accent);
}

.description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Reviews Section */
#reviews {
    padding: 60px 20px;
    background: var(--bg-secondary) !important;
    font-family: 'Inter', sans-serif;
    border-radius: 20px;
    max-width: 1200px;
    margin: 30px auto;
    border: 1px solid var(--border);
}

#reviews h2 {
    color: var(--text-primary) !important;
}

#reviews > div > div {
    background: var(--bg-card) !important;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

#reviews > div > div:hover {
    border-color: var(--accent);
}

#reviews p {
    color: var(--text-secondary) !important;
}

#reviews p:first-child {
    color: var(--text-primary) !important;
}

/* Contact Form */
#contact-form {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-secondary);
    border-radius: 20px;
    max-width: 800px;
    margin: 30px auto;
    border: 1px solid var(--border);
}

#contact-form > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

label {
    margin-top: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    font-size: 0.9rem;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

input::placeholder, textarea::placeholder {
    color: var(--text-secondary);
}

button {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #0097a7 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.checkbox-label input {
    display: none;
}

.checkbox-label input:checked + span {
    background: var(--accent);
    color: white;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeOut 3s forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10px); }
}

.hidden {
    display: none;
}

.success-message {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
    padding: 15px;
    margin-top: 15px;
    border-radius: 10px;
    text-align: center;
}

.error-message {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: white;
    padding: 15px;
    margin-top: 15px;
    border-radius: 10px;
    text-align: center;
}

/* Gallery */
#gallery {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-primary);
}

.slider {
    position: relative;
    max-width: 900px;
    height: 500px;
    margin: auto;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid var(--border);
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.prev:hover, .next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.prev { left: 15px; }
.next { right: 15px; }

/* Terms of Service */
.terms-of-service {
    padding: 60px 40px !important;
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    font-family: 'Inter', sans-serif !important;
    text-align: left !important;
    border-radius: 20px;
    max-width: 900px;
    margin: 30px auto !important;
    border: 1px solid var(--border);
}

.terms-of-service h2 {
    color: var(--text-primary) !important;
    margin-bottom: 10px;
}

.terms-of-service h3 {
    color: var(--accent) !important;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.terms-of-service p, .terms-of-service li {
    color: var(--text-secondary) !important;
    line-height: 1.8;
}

.terms-of-service ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-of-service em {
    color: var(--accent) !important;
}

/* Responsive */
@media screen and (max-width: 768px) {
    header {
        padding: 30px 15px;
    }

    section {
        padding: 40px 15px;
    }

    #services {
        grid-template-columns: 1fr;
    }

    .team-container {
        gap: 20px;
    }

    .team-member {
        width: 100%;
        max-width: 300px;
    }

    .slider {
        height: 300px;
    }
}
