:root {
    --kolek-gold: #d4af37;
    --kolek-navy: #111F33;
    --kolek-blue: #232C55;
    --kolek-grey: #222635;
    --kolek-white: #f9fafb;
}

body {
    margin: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: var(--kolek-navy);
    color: var(--kolek-white);
    min-height: 100vh;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    background: var(--kolek-gold);
    color: var(--kolek-navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}
.nav-content {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 70px;
}
.nav-logo {
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.3em;
    color: var(--kolek-navy);
    font-family: 'Segoe UI', 'Arial', sans-serif;
}
.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar li {
    margin-left: 40px;
}
.navbar a {
    color: var(--kolek-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.2s;
}
.navbar a.active, .navbar a:hover {
    text-decoration: underline;
    color: #3b355c;
}

/* Hero Section */
.hero-section {
    background: var(--kolek-blue);
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 60px 0 30px 0;
}
.main-logo {
    height: 320px;
    width: auto;
    max-width: 90vw;
    filter: drop-shadow(0 6px 32px #000c);
}

/* Headline */
.headline-section {
    background: var(--kolek-blue);
    text-align: center;
    margin-bottom: 0;
    padding: 24px 0 8px 0;
}
.headline-section h1 {
    color: var(--kolek-gold);
    font-size: 2.1em;
    margin: 0;
    letter-spacing: 2px;
}

/* Services Cards Section */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px 20px 20px;
  gap: 36px;
}

.card {
  background-color: #13294b;
  padding: 32px 22px 26px 22px;
  border-radius: 18px;
  max-width: 320px;
  min-width: 260px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.agent-img {
  width: 110px;             /* Good size for balance */
  height: 140px;            /* Portrait aspect, looks more like a real agent */
  object-fit: cover;
  border-radius: 18px;      /* Rounded corners, not a circle */
  border: 3px solid var(--kolek-gold);
  margin-bottom: 16px;
  box-shadow: 0 3px 14px rgba(17,24,39,0.16);
  background: #fff;
  display: block;
}

.card h2 {
  color: #f2c94c;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.3em;
  text-align: center;
}

.card p {
  font-size: 1em;
  margin-top: 10px;
  color: #fafaf2;
  text-align: center;
}


/* Footer */
.footer-section {
    background: var(--kolek-blue);
    color: var(--kolek-white);
    text-align: center;
    padding: 34px 0 24px 0;
    border-top: 2px solid var(--kolek-gold);
}
.footer-section a {
    color: var(--kolek-gold);
    text-decoration: underline;
}
.footer-socials {
    margin: 12px 0;
}
.footer-socials img {
    width: 30px;
    height: 30px;
    margin: 0 8px;
    filter: grayscale(1) brightness(1.7);
    opacity: 0.9;
    transition: opacity 0.13s, filter 0.13s;
}
.footer-socials img:hover {
    opacity: 1;
    filter: none;
}
.copyright {
    color: #d9be78;
    margin-top: 16px;
    font-size: 0.98em;
    opacity: 0.88;
}


/* === MAIN HEADER HERO SECTION === */
.main-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #0c1b33;
    padding: 64px 5vw 54px 5vw; /* padding can be tweaked */
    gap: 5vw;
}

.main-logo {
    max-width: 320px;    /* You can go larger if you want! */
    width: 28vw;         /* Responsive: up to 28% of the screen */
    min-width: 220px;    /* Don’t let it get too tiny on mobile */
    height: auto;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.16);
    background: none;
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 65vw; /* Take up 2/3 of the space */
    min-width: 280px;
}

.header-title {
    color: gold;
    font-size: 5vw;     /* Responsive: 5% of viewport width */
    font-weight: 900;
    letter-spacing: 0.06em;
    margin: 0 0 14px 0;
    line-height: 1.1;
}

.header-subtitle {
    color: #f2c94c;
    font-size: 2vw;
    margin-bottom: 12px;
    font-weight: 700;
}

.header-phrase {
    color: #fff;
    font-size: 1.2vw;
    font-style: italic;
    opacity: 0.97;
    margin-bottom: 8px;
}

.proof-section {
  background: #182243;
  padding: 64px 0 54px 0;
  text-align: center;
}

.proof-title {
  font-size: 2.6em;
  font-weight: bold;
  font-style: italic;
  color: var(--kolek-gold);
  margin-bottom: 44px;
  letter-spacing: 3px;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-shadow: 0 2px 12px #fbbf2440, 0 1px 2px #0009;
}

.proof-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.proof-item {
  margin-bottom: 6px;
}

.proof-number.gold {
  font-size: 2.5em;
  font-weight: 900;
  color: var(--kolek-gold);
  margin-bottom: 4px;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 12px #fbbf2440, 0 1px 2px #fff9;
}

.proof-desc {
  font-size: 1.33em;
  color: var(--kolek-white);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 1px;
}

.proof-source {
  font-size: 1em;
  color: #e2c783;
  opacity: 0.82;
  margin-bottom: 2px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.5px;
}


.about-section {
  background: #232c55;
  padding: 44px 0 36px 0;
  color: var(--kolek-white);
  text-align: center;
}
.about-title {
  font-size: 2em;
  color: var(--kolek-gold);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1.2px;
}
.about-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.14em;
  line-height: 1.7;
  opacity: 0.96;
}


@media (max-width: 900px) {
    .main-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2vw;
    }
    .header-text, .main-logo {
        width: 90vw;
        min-width: unset;
    }
    .header-title {
        font-size: 2.6rem;
    }
    .header-subtitle {
        font-size: 1.3rem;
    }
    .header-phrase {
        font-size: 1.1rem;
    }
}

form label {
  color: var(--kolek-gold);
  margin: 10px 0 2px 0;
  text-align: left;
  font-weight: 500;
  font-size: 1.06em;
  display: block;
}

form select {
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  margin-bottom: 10px;
  background: #fff;
  color: #0c1b33;
}

.form-section {
  background-color: #1e2a45;
  padding: 48px 0 48px 0;
  text-align: center;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-form {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  background: none;
}

form label {
  color: var(--kolek-gold);
  margin: 8px 0 2px 0;
  text-align: left;
  font-weight: 500;
  font-size: 1.07em;
  display: block;
}

form select, form input[type="text"], form input[type="email"], form textarea {
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  background: #f9fafb;
  color: #1e2a45;
  margin-bottom: 4px;
  width: 100%;
  box-sizing: border-box;
}

form textarea {
  min-height: 90px;
  resize: vertical;
}

form button[type="submit"] {
  background-color: var(--kolek-gold);
  color: #0c1b33;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.15s;
}

form button[type="submit"]:hover {
  background: #ffe08a;
  color: #0c1b33;
}

@media (max-width: 600px) {
  .contact-form {
    max-width: 98vw;
  }
}


.contact-details {
  margin: 0 auto 20px auto;
  padding: 12px 0 6px 0;
  color: var(--kolek-gold);
  font-size: 1.08em;
  text-align: center;
  line-height: 1.7;
}
.contact-details a {
  color: var(--kolek-gold);
  text-decoration: underline;
}


footer {
  background: #0c1b33;
  color: #d9be78;
  text-align: center;
  padding: 14px 0 6px 0;
  font-size: 1em;
}

.footer-details {
  margin-bottom: 0;
  color: #d9be78;
  font-size: 1em;
}

.footer-details a {
  color: #d4af37;
  text-decoration: underline;
}

.copyright {
  margin-top: 0;
  color: #d9be78;
  font-size: 0.98em;
  opacity: 0.88;
}


.agent-img {
  width: 350px;            /* Wide and bold */
  height: 275px;           /* Good aspect for office scenes */
  object-fit: cover;       /* Ensures full image, crop if needed */
  border-radius: 18px;     /* Rounded rectangle, professional */
  border: 3px solid var(--kolek-gold);
  margin-bottom: 22px;
  box-shadow: 0 5px 24px rgba(17,24,39,0.19);
  background: #fff;
  display: block;
}


