/* style.css — separate stylesheet */

/* ----- reset & base ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    background: #f4f8fe;
    color: #1a2639;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #0b1a2a;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #d4a853;
    margin: 0.6rem auto;
    border-radius: 4px;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: #2d4055;
}

/* ----- TOP LEFT LOGO ----- */
.site-header {
    position: static; 
    display: flex;
    justify-content: flex-start;
    padding: 10px 22px 12px 22px;
    background: #ffffff;
    border-bottom: 4px solid #d4a853;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.logo-block {
    pointer-events: none; /* logo is now non-interactive, no hover effects */
}

.logo-image,
.logo-block img {
    display: block;
    max-width: 50%;
    height: auto;
    margin: 2 auto 4px;
    border-radius: 6px;
    transition: none; 
}

.logo-image:hover,
.logo-block img:hover {
    transform: none;
    box-shadow: none;
    filter: none;
}

.logo-sub {
    font-size: 1rem;
    font-weight: 500;
    color: #b6d4e8;
    letter-spacing: 3px;
    margin-top: 2px;
    border-bottom: 1px solid rgba(212, 168, 83, 0.3);
    padding-bottom: 4px;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    color: #aac2d9;
    letter-spacing: 0.5px;
    margin-top: 4px;
    opacity: 0.9;
    text-transform: uppercase;
    word-spacing: 2px;
}

/* ----- HERO ----- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(145deg, #0b1a2a 0%, #1a3347 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.8rem;
}

.hero-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #d4a853;
    margin: 0.6rem auto 0.2rem;
    border-radius: 4px;
}

.hero-desc {
    font-size: 1.2rem;
    color: #b6d4e8;
    max-width: 640px;
    margin: 0.8rem auto 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2.4rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #d4a853;
    color: #0b1a2a;
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.35);
}

.btn-primary:hover {
    background: #e2b85e;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(212, 168, 83, 0.45);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #d4a853;
    transform: translateY(-3px);
}

/* animated rings */
.hero-graphic {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
    opacity: 0.4;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 83, 0.2);
    transform: translate(-50%, -50%) scale(0.6);
    animation: pulse 5s ease-in-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 1.5s;
    border-color: rgba(212, 168, 83, 0.12);
}

.pulse-ring.delay-2 {
    animation-delay: 3s;
    border-color: rgba(212, 168, 83, 0.06);
}

@keyframes pulse {
    0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.8; }
    50%  { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.8; }
}

/* ----- ABOUT ----- */
.about-section {
    padding: 4rem 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.about-item {
    background: #f8fcff;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid #e6edf5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 20, 30, 0.08);
}

.about-item h3 {
    font-size: 1.2rem;
    color: #0b1a2a;
    margin-bottom: 0.5rem;
    border-left: 4px solid #d4a853;
    padding-left: 0.8rem;
}

.about-item p {
    color: #2d4055;
}

/* ----- SERVICES (nature of business) ----- */
.services-section {
    padding: 4rem 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.service-item {
    background: #f8fcff;
    padding: 1.2rem 1rem;
    border-radius: 16px;
    border: 1px solid #e6edf5;
    text-align: center;
    font-weight: 600;
    color: #0b1a2a;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: #d4a853;
    box-shadow: 0 8px 20px rgba(0, 20, 30, 0.06);
}

/* ----- TEAM (3 people) ----- */
.team-section {
    padding: 4rem 0;
    background: #f0f6fd;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    background: #ffffff;
    padding: 2rem 1rem;
    border-radius: 24px;
    border: 1px solid #e6edf5;
    transition: transform 0.2s ease;
}

.team-member:hover {
    transform: translateY(-6px);
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.8rem;
    background: #e6edf5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #d4a853;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h4 {
    font-size: 1.1rem;
    color: #0b1a2a;
}

.team-member p {
    color: #5b6f82;
    font-size: 0.9rem;
}

/* ----- CONTACT ----- */
.contact-section {
    padding: 4rem 0;
    background: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    background: #f8fcff;
    padding: 2.5rem;
    border-radius: 32px;
    border: 1px solid #e6edf5;
}

.contact-info h2 {
    font-size: 2rem;
    color: #0b1a2a;
    margin-bottom: 0.8rem;
}

.contact-info p {
    color: #2d4055;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.9rem 1.2rem;
    border: 1.5px solid #e2e9f2;
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    transition: border 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4a853;
    box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.12);
}

.contact-form .btn {
    align-self: flex-start;
    padding: 0.9rem 2.8rem;
}

/* ----- FOOTER ----- */
.site-footer {
    background: #06121e;
    color: #7f95ab;
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid #1f3347;
}

.site-footer p {
    margin-bottom: 0.3rem;
}

.footer-url {
    color: #b6d4e8;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 16px 10px 16px;
    }
    .logo-image { max-width: 140px; }
    .logo-sub { font-size: 0.8rem; }
    .logo-tagline { font-size: 0.5rem; }

    .hero-title { font-size: 2.4rem; }
    .hero-desc { font-size: 1rem; }
    .hero-graphic { width: 160px; height: 160px; right: 2%; opacity: 0.25; }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 1.8rem;
    }
    .section-title { font-size: 1.8rem; }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 8px 12px;
    }
    .logo-image { max-width: 100px; }
    .logo-sub { font-size: 0.65rem; letter-spacing: 2px; }
    .logo-tagline { font-size: 0.4rem; }

    .hero-title { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; text-align: center; }

    .contact-form .btn { align-self: stretch; }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 0.8rem;
    }
    .service-item {
        font-size: 0.85rem;
        padding: 0.9rem 0.6rem;
    }
}