/* ===== SEAHOLDINGS CORPORATE WEBSITE - FINAL STYLES ===== */
/* BRAND COLORS:
   Primary (Deep Blue): #025b96
   Secondary (Blue-Teal): #2abcd7
   Accent (Vibrant Green): #3ba323
   Neutral Light: #f8f9fa
   Neutral Dark: #333333
*/

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
     font-family: 'Inter', sans-serif;
     font-weight: 350; /* Changed from default 400 */
     line-height: 1.6;
     color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 350; /* Changed from default 600/700 */
}

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

section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #025b96;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
}

.text-center {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: #3ba323;
    color: white;
}

.btn-primary:hover {
    background-color: #2f8a1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 163, 35, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: #025b96;
    border: 2px solid #025b96;
}

.btn-secondary:hover {
    background-color: rgba(2, 91, 150, 0.05);
}

.btn-outline {
    background-color: transparent;
    color: #025b96;
    border: 2px solid #025b96;
}

.btn-outline:hover {
    background-color: #025b96;
    color: white;
}

.btn-nav {
    padding: 10px 24px;
    margin-left: 10px;
    background-color: #3ba323;
    color: white;
    border: none;
}

.btn-nav:hover {
    background-color: #2f8a1c;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #2abcd7;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2abcd7;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #025b96;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    margin-top: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 91, 150, 0.5) 0%, rgba(43, 188, 215, 0.3) 100%);
}

/* ===== STRATEGY SECTION ===== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pillar-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-top: 4px solid #2abcd7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #025b96;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #025b96;
}

/* ===== SECTORS SECTION ===== */
.sectors {
    background-color: #f8f9fa;
}

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

.sector-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sector-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sector-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #025b96;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sector-card h3 i {
    color: #2abcd7;
}

.sector-tags {
    font-weight: 600;
    color: #3ba323;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-profile {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.leadership-img {
    flex: 0 0 300px;
}

.img-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 5rem;
}

.leadership-bio {
    flex: 1;
    min-width: 300px;
}

.leadership-bio h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #025b96;
    margin-bottom: 5px;
}

.leadership-title {
    font-size: 1.1rem;
    color: #3ba323;
    font-weight: 600;
    margin-bottom: 25px;
}

.leadership-bio p {
    margin-bottom: 20px;
    color: #555;
}

.tagline {
    font-style: italic;
    font-weight: 500;
    color: #025b96;
    border-left: 3px solid #2abcd7;
    padding-left: 15px;
}

/* ===== FOUNDATION SECTION ===== */
.foundation {
    background: linear-gradient(rgba(2, 91, 150, 0.85), rgba(2, 91, 150, 0.9)), url('foundation-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.foundation .section-title,
.foundation .section-subtitle {
    color: white;
}

.foundation-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    max-width: 800px;
    margin: 30px auto;
    position: relative;
    padding: 0 20px;
}

.quote-author {
    font-weight: 600;
    margin-bottom: 40px;
    color: #2abcd7;
}

/* ===== CONTACT SECTION ===== */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group:nth-child(5) {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2abcd7;
}

.contact-form button {
    grid-column: span 2;
    justify-self: center;
    margin-top: 10px;
    min-width: 200px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #025b96;
    color: #c0c9e0;
    padding: 60px 0 30px;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 10px;
    color: #a3b1d7;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #c0c9e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #2abcd7;
}

.footer-col p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #a3b1d7;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .leadership-profile {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        margin: 15px 0;
    }
    .hamburger {
        display: block;
    }
    .hero h1 {
        font-size: 2.3rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .form-group:nth-child(5) {
        grid-column: span 1;
    }
    .contact-form button {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .leadership-profile {
        padding: 30px 20px;
    }
    .leadership-img {
        flex: 0 0 100%;
    }
}

/* ===== UPDATED PILLAR ICONS ===== */
.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #025b96;
    color: white;
    font-size: 1.8rem; /* Icon size */
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Optional: Add a subtle animation on hover */
.pillar-card:hover .pillar-icon {
    background-color: #2abcd7; /* Changes to teal on hover */
    transform: rotate(5deg) scale(1.05);
}

.hero .btn-secondary {
    color: white;
    border-color: white;
    background-color: transparent;
}
.hero .btn-secondary:hover {
    background-color: white;
    color: #025b96; /* Your primary blue color */
    border-color: white;
}
