@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
  --color-dark: #121212;
  --color-dark-secondary: #1a1a1a;
  --color-light: #ffffff;
  --color-light-secondary: #f5f5f5;
  --color-text-dark: #333333;
  --color-text-light: #e0e0e0;
  --color-accent: #2c90e8; /* We'll use a sophisticated neutral/blue/green mix, adjusting based on logo */
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-6 { padding-top: 4rem; }
.pb-6 { padding-bottom: 4rem; }
.py-8 { padding: 5rem 0; }

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 30px;
  border: 1px solid currentColor;
  background: transparent;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn:hover {
  background: var(--color-light);
  color: var(--color-dark);
}

.btn-dark {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.btn-dark:hover {
  background: var(--color-dark);
  color: var(--color-light);
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  color: var(--color-light);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-icons {
  display: flex;
  gap: 20px;
}

/* Hero Section */
.hero {
  background-color: var(--color-dark);
  color: var(--color-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  padding-right: 40px;
}

.hero-content .small-phone {
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
  opacity: 0.8;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
  max-width: 500px;
}

.founder-info {
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.founder-info strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.hero-image {
  height: 80vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* HR Solutions Section */
.hr-solutions {
  background-color: var(--color-light);
}

.section-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 60px;
  color: #555;
  font-weight: 500;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solutions-logo img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.solutions-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.solutions-text p {
  color: #666;
  font-size: 1.05rem;
}

/* Gallery Section */
.gallery {
  background-color: var(--color-light);
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.carousel-slide {
  display: none;
  width: 100%;
}

.carousel-slide.active {
  display: block;
  animation: fadeEffect 1s;
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.carousel-btn {
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

/* Founder Message */
.founder-message {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.founder-bg {
  background-image: url('../assets/office_wall.png');
  background-size: cover;
  background-position: center;
}

.founder-content {
  padding: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-light);
}

.founder-content .small-hello {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.founder-content blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  border-left: 3px solid #ddd;
  padding-left: 20px;
}

.founder-content .author {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 40px;
}

/* Hiring Section */
.hiring {
  background-color: #fdfdfd;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.form-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 30px;
}

.form-control {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--color-dark);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  font-size: 0.85rem;
  color: #666;
}

.attach-btn {
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-submit {
  display: block;
  margin: 0 auto;
}

.captcha-notice {
  text-align: center;
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 30px;
}

/* Info Section (Downloads, Appointments, Contact) */
.info-section {
  text-align: center;
}

.info-box {
  margin-bottom: 60px;
}

.info-box h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  text-transform: capitalize;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.grey-box {
  background: var(--color-light-secondary);
  padding: 20px;
  color: #777;
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  align-items: center;
}

.contact-details h5 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-details p {
  margin-bottom: 20px;
  color: #555;
  font-size: 0.95rem;
}

.qr-code {
  width: 100%;
  max-width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background-image: url('../assets/office_two.png');
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--color-light);
  padding: 80px 20px;
  text-align: center;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.footer-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.footer-content p {
  font-size: 0.9rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

.subscribe-form {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.subscribe-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  color: white;
  padding: 10px 0;
  width: 60%;
  font-family: var(--font-sans);
}

.subscribe-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.subscribe-input:focus {
  outline: none;
  border-bottom-color: white;
}

.btn-light {
  border: 1px solid white;
  color: white;
}

.btn-light:hover {
  background: white;
  color: var(--color-dark);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
  .solutions-grid { gap: 40px; }
  .founder-message { grid-template-columns: 1fr; }
  .founder-bg { height: 40vh; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { padding-right: 0; }
  .solutions-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-grid { text-align: center; justify-items: center; }
  .subscribe-form { flex-direction: column; align-items: center; }
  .subscribe-input { width: 100%; margin-bottom: 20px; }
  .hero-image { height: 50vh; }
}
