/*
Theme Name: Zain Maritime Survey
Version: 1.0
*/

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

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #1e293b;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #0a2540;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 22px;
    color: white;
}

.logo h1 span {
    color: #00d4ff;
}

.tagline {
    font-size: 10px;
    color: #94a3b8;
}
/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a,
.dropbtn {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

nav ul li a:hover,
.dropbtn:hover {
    color: #00d4ff;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropbtn {
    background: none;
    border: none;
    color: white;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li a {
    color: #1e293b;
    padding: 10px 20px;
    display: block;
    font-size: 14px;
}

.dropdown-content li a i {
    width: 24px;
    margin-right: 8px;
    color: #00d4ff;
}

.dropdown-content li a:hover {
    background: #f8fafc;
    color: #00d4ff;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(10,37,64,0.85), rgba(10,37,64,0.85)), url('https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Tartus_photo_from_NASA.jpg/1600px-Tartus_photo_from_NASA.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #00d4ff;
    color: #0a2540;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
}

.btn-outline {
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    margin-left: 15px;
}

/* Services */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #0a2540;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 48px;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.service-card i {
    font-size: 45px;
    color: #00d4ff;
    margin-bottom: 15px;
}

/* About */
.about {
    padding: 80px 0;
}

.about-flex {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li i {
    color: #00d4ff;
}

/* Accreditation */
.accreditation {
    background: #f8fafc;
    padding: 60px 0;
    text-align: center;
}

.badge-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badge {
    background: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
}

.badge i {
    color: #00d4ff;
    margin-right: 8px;
}

/* Contact */
.contact {
    padding: 80px 0;
}

.contact-flex {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

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

/* Footer */
.site-footer {
    background: #0a2540;
    color: #94a3b8;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #00d4ff;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1e4a6e;
}

/* Responsive */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 {
        font-size: 32px;
    }
    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }
    .about-flex {
        flex-direction: column;
    }
}