/* style.css - Complete stylesheet with refined logo and button styles */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER / NAVIGATION ===== */
header {
    background: #0a1a2a;
    color: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 3px solid #f39c12;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ----- LOGO AREA (Refined) ----- */
.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, #f39c12, #e67e22);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0a1a2a;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.35);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(-6deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #f39c12;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    color: #b0c4de;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: -2px;
}

/* ----- NAVIGATION ----- */
nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

nav ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d0dbe8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: transparent;
}

nav ul li a i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

nav ul li a:hover i,
nav ul li a.active i {
    opacity: 1;
}

/* ----- HEADER CTA BUTTON ----- */
.header-cta {
    margin-left: 10px;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(145deg, #f39c12, #e67e22);
    color: #0a1a2a;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    border: none;
    cursor: pointer;
}

.btn-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.45);
    background: linear-gradient(145deg, #f1c40f, #f39c12);
}

.btn-header i {
    font-size: 0.9rem;
}

/* ===== PRIMARY BUTTON (Global) ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, #f39c12, #e67e22);
    color: #0a1a2a;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.45);
    background: linear-gradient(145deg, #f1c40f, #f39c12);
}

.btn-primary i {
    font-size: 1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #0a1a2a 0%, #1a2a3a 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #f39c12;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0a1a2a;
}

.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 70px 0;
    background: #f4f6f8;
}

.services-preview h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #0a1a2a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid #f39c12;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0a1a2a;
    margin-bottom: 12px;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, #0a1a2a 0%, #1a2a3a 100%);
    color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}

.page-banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
}

.page-banner p {
    font-size: 1.1rem;
    opacity: 0.85;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 70px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: start;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #0a1a2a;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #444;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.about-features div {
    font-weight: 600;
    color: #0a1a2a;
}

.about-features span {
    color: #f39c12;
    margin-right: 8px;
}

.about-card {
    background: #f4f6f8;
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #f39c12;
}

.about-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0a1a2a;
    margin: 20px 0 10px;
}

.about-card h3:first-child {
    margin-top: 0;
}

/* ===== PROJECTS PAGE ===== */
.projects-section {
    padding: 70px 0;
    background: #fff;
}

.projects-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: #f9f9f9;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #f39c12;
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    transform: translateY(-5px);
}

.project-badge {
    display: inline-block;
    background: #0a1a2a;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.project-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0a1a2a;
    margin-bottom: 10px;
}

.project-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.project-year {
    display: inline-block;
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 600;
}

.projects-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #ecf0f1;
}

.stat-highlight {
    text-align: center;
    font-weight: 600;
    color: #555;
}

.stat-highlight span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #0a1a2a;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 70px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #0a1a2a;
    margin-bottom: 15px;
}

.contact-info > p {
    color: #555;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-item strong {
    display: block;
    color: #0a1a2a;
    margin-bottom: 2px;
}

.contact-item p {
    color: #555;
}

.contact-item a {
    color: #f39c12;
    text-decoration: none;
}

.contact-hours {
    background: #f4f6f8;
    padding: 20px 25px;
    border-radius: 10px;
}

.contact-hours h4 {
    font-family: 'Montserrat', sans-serif;
    color: #0a1a2a;
    margin-bottom: 8px;
}

.contact-hours p {
    color: #555;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #0a1a2a;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f39c12;
}

.contact-form .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ===== FOOTER ===== */
footer {
    background: #0a1a2a;
    color: #ecf0f1;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1a2a3a;
}

.footer-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #f39c12;
    margin-bottom: 6px;
}

.footer-info p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-contact h4,
.footer-nav h4 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #f39c12;
}

.footer-bottom {
    background: #05101a;
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .header-flex {
        flex-direction: column;
        gap: 12px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    nav ul li a {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    .header-cta {
        margin-left: 0;
    }
    .btn-header {
        padding: 8px 22px;
        font-size: 0.85rem;
    }
    .logo-main {
        font-size: 1.5rem;
    }
    .logo-sub {
        font-size: 0.6rem;
    }
    .logo-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    .hero h1 {
        font-size: 2.6rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero {
        padding: 60px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .projects-stats {
        flex-direction: column;
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 20px;
    }
    .btn-primary {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    nav ul li a {
        padding: 6px 12px;
        font-size: 0.78rem;
    }
    nav ul li a i {
        display: none;
    }
    .btn-header {
        padding: 6px 18px;
        font-size: 0.8rem;
    }
    .logo-main {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }
    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
    }
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .page-banner h1 {
        font-size: 1.8rem;
    }
    .stat-number {
        font-size: 2rem;
    }
}