/* Al-Basirah Landing Page Styles */

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

body.page-template-page-albasirah-landing {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

/* Header */
header {
    background: #1a2332;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.logo-accent {
    color: #d4af37;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 160px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

.hero-highlight {
    color: #d4af37;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #e8e8e8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #d4af37;
    color: #1a2332;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: #d4af37;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a2332;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d4af37;
}

.about-content {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

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

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

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #d4af37;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a2332;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 16px;
}

.service-list {
    list-style: none;
    margin-top: 15px;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: #1a2332;
    color: #ffffff;
}

.why-us .section-title {
    color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.benefit-item p {
    color: #b8b8b8;
    font-size: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 40px auto 0;
}

.contact-content > p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Contact Form 7 Styling */
.wpcf7-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.wpcf7-form .form-row .form-group {
    margin-bottom: 0;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

.wpcf7-form .wpcf7-submit {
    width: 100%;
    margin-top: 10px;
}

.wpcf7-form .wpcf7-not-valid-tip {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 5px;
}

.wpcf7-response-output {
    margin: 20px 0 !important;
    padding: 15px !important;
    border-radius: 4px !important;
    border: none !important;
}

.wpcf7-mail-sent-ok {
    background: #4caf50 !important;
    color: white !important;
}

.wpcf7-validation-errors {
    background: #f44336 !important;
    color: white !important;
}

.contact-divider {
    margin: 40px 0 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.contact-email {
    font-size: 24px;
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.contact-email:hover {
    color: #1a2332;
}

/* Footer */
footer {
    background: #1a2332;
    color: #b8b8b8;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

footer a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .wpcf7-form .form-row {
        grid-template-columns: 1fr;
    }
}