/* GVG Capital Site - Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 3px solid #f5a623;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo img {
  height: 50px;
}

.header nav {
  display: flex;
  gap: 30px;
}

.header nav a {
  font-size: 15px;
  color: #555;
  font-weight: 400;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.header nav a:hover,
.header nav a.active {
  color: #111;
  border-bottom: 2px solid #111;
}

/* ===== SECTION DIVIDER ===== */
.divider {
  max-width: 1100px;
  margin: 0 auto;
  border: none;
  border-top: 2px solid #f5a623;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 40px 20px 30px;
  border-top: 2px solid #f5a623;
  max-width: 1100px;
  margin: 40px auto 0;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

.footer .social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer .social-icons a {
  color: #555;
  font-size: 20px;
  transition: color 0.2s;
}

.footer .social-icons a:hover {
  color: #f5a623;
}

/* ===== HOME PAGE ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
  gap: 40px;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-text .not {
  color: #e74c3c;
  font-size: 48px;
  font-weight: 700;
  text-decoration: underline;
  display: block;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
}

.hero-text p strong {
  color: #333;
}

.hero-text .nerds {
  color: #f5a623;
}

.hero-text .magic {
  color: #9b59b6;
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  font-size: 18px;
}

.hero-image {
  flex: 1;
  max-width: 550px;
}

.hero-image img {
  width: 100%;
}

/* Stats Section */
.stats-section {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
}

.stats-section h2 {
  font-size: 28px;
  font-weight: 300;
  color: #555;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item .stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 10px;
}

.stat-item .stat-divider {
  width: 40px;
  height: 3px;
  background: #f5a623;
  margin: 10px auto;
}

.stat-item .stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #f5a623;
  line-height: 1.5;
}

/* Partners Section */
.partners-section {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
}

.partners-section h3 {
  font-size: 18px;
  font-weight: 300;
  color: #555;
  margin-bottom: 40px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-logos img {
  max-height: 80px;
  max-width: 300px;
  object-fit: contain;
}

/* ===== TECHNOLOGY PAGE ===== */
.page-hero {
  text-align: center;
  max-width: 900px;
  margin: 60px auto 40px;
  padding: 0 40px;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 300;
  color: #333;
  margin-bottom: 15px;
}

.page-hero h1 .highlight {
  color: #9b59b6;
  font-weight: 700;
}

.page-hero p {
  font-size: 18px;
  color: #555;
}

.page-hero p .orange {
  color: #f5a623;
}

.page-hero p .bold-orange {
  color: #f5a623;
  font-weight: 700;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 40px;
  gap: 40px;
}

.tech-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.tech-card .tech-image {
  flex-shrink: 0;
  width: 200px;
}

.tech-card .tech-image img {
  width: 100%;
}

.tech-card .tech-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.tech-card .tech-content .tech-summary {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.tech-card .tech-content .tech-detail {
  display: none;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-top: 10px;
}

.tech-card .tech-content .tech-detail.open {
  display: block;
}

.tech-card .expand-btn {
  cursor: pointer;
  color: #ccc;
  font-size: 24px;
  border: none;
  background: none;
  margin-top: 10px;
  transition: color 0.2s;
}

.tech-card .expand-btn:hover {
  color: #f5a623;
}

/* ===== TEAM PAGE ===== */
.team-header {
  text-align: center;
  max-width: 1000px;
  margin: 50px auto 40px;
  padding: 0 40px;
}

.team-header h1 {
  font-size: 38px;
  font-weight: 300;
  color: #333;
  margin-bottom: 15px;
}

.team-header p {
  font-size: 16px;
  color: #555;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px;
  gap: 30px;
}

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

.team-member .team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 20px;
  font-weight: 400;
  color: #333;
}

.team-member .title {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.team-member .member-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.team-member .member-socials a {
  color: #999;
  font-size: 18px;
  transition: color 0.2s;
}

.team-member .member-socials a:hover {
  color: #f5a623;
}

/* ===== BLOG PAGE ===== */
.blog-section {
  text-align: center;
  max-width: 900px;
  margin: 80px auto;
  padding: 0 40px;
}

.blog-section h1 {
  font-size: 48px;
  font-weight: 700;
  color: #444;
  margin-bottom: 60px;
}

.blog-search {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
  padding: 10px 20px;
}

.blog-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #999;
}

.blog-search button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #999;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  position: relative;
  height: 450px;
  background: url('https://images.unsplash.com/photo-1556745753-b2904692b3cd?w=1400&q=80') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.contact-hero h1 {
  position: relative;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.contact-hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 15px auto 0;
}

.contact-hero p {
  position: relative;
  font-size: 16px;
  font-style: italic;
  max-width: 500px;
}

.contact-body {
  display: flex;
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 40px;
  gap: 40px;
}

.contact-info {
  flex: 0 0 320px;
  background: #f5f5f5;
  padding: 35px;
  border-radius: 4px;
}

.contact-info h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.contact-info .info-item {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-info .info-address {
  font-size: 14px;
  color: #555;
  margin-top: 15px;
  line-height: 1.6;
}

.contact-info .contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.contact-info .contact-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 16px;
  transition: background 0.2s;
}

.contact-info .contact-socials a:hover {
  background: #f5a623;
  color: #fff;
}

.contact-form {
  flex: 1;
}

.contact-form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.contact-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #f5a623;
}

.contact-form textarea {
  min-height: 80px;
  resize: vertical;
}

.contact-form .submit-btn {
  display: inline-block;
  padding: 14px 50px;
  background: #aaa;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.2s;
}

.contact-form .submit-btn:hover {
  background: #f5a623;
}

.contact-map {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 40px;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 4px;
}

/* ===== JOBS PAGE ===== */
.jobs-header {
  text-align: center;
  padding: 50px 40px 30px;
}

.jobs-header h1 {
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  color: #222;
  margin-bottom: 5px;
}

.jobs-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
}

.job-listing {
  display: flex;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 40px;
  gap: 40px;
  align-items: flex-start;
}

.job-content {
  flex: 1;
}

.job-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.job-content .job-location {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.job-content .job-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.job-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 20px 0 10px;
}

.job-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.job-content ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 5px;
}

.job-image {
  flex: 0 0 400px;
}

.job-image img {
  width: 100%;
  border-radius: 8px;
}

/* ===== PRIVACY PAGE ===== */
.privacy-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 40px;
}

.privacy-section h1 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.privacy-section .effective-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
}

.privacy-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 30px 0 12px;
}

.privacy-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin: 20px 0 10px;
}

.privacy-section a {
  color: #f5a623;
  text-decoration: underline;
}

.privacy-section p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-section ul {
  padding-left: 25px;
  margin-bottom: 15px;
}

.privacy-section ul li {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-text { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .job-listing { flex-direction: column; }
  .job-image { flex: none; max-width: 400px; }
}

@media (max-width: 768px) {
  .header { padding: 12px 20px; }
  .header nav { gap: 15px; font-size: 13px; }
  .hero-text h1 { font-size: 30px; }
  .hero-text .not { font-size: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item .stat-number { font-size: 30px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-body { flex-direction: column; }
  .contact-info { flex: none; }
}

@media (max-width: 480px) {
  .header nav { gap: 10px; }
  .header nav a { font-size: 12px; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
