:root {
  /* Color System */
  --bg-primary: #f6f8fb;
  --bg-section: #ffffff;
  --bg-soft: #eef2f7;
  
  --text-head: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  
  --border-color: #e2e8f0;
  
  --grad-primary: linear-gradient(135deg, #3b82f6, #6366f1);
  --grad-secondary: linear-gradient(135deg, #22c55e, #4ade80);
  --grad-tertiary: linear-gradient(135deg, #8b5cf6, #a78bfa);
  
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-primary);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-head);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 600px; margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: var(--bg-section);
  color: var(--text-head);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  padding: 1rem 0;
}

.header.scrolled {
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

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

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-head);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--grad-primary);
  transition: var(--transition);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-head);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  background-image: linear-gradient(to right, rgba(246, 248, 251, 0.95), rgba(246, 248, 251, 0.8)), url('images/photo-1542314831-c6a420325160.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--bg-section);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-head);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.hero-visual {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.floating-card {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
}

.floating-card img {
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: var(--grad-secondary);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-title {
  font-weight: 700;
  color: var(--text-head);
}

.card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: #fbbf24;
}

/* Sections */
section {
  padding: 6rem 0;
}

.bg-white {
  background-color: var(--bg-section);
}

/* Hotels Grid */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hotel-card {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.hotel-img-wrapper {
  position: relative;
  height: 220px;
}

.hotel-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-location {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.hotel-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hotel-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.hotel-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.hotel-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.h-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-body);
}

.h-feature svg {
  width: 16px;
  height: 16px;
  color: #3b82f6;
}

/* Work Experience */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.exp-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  position: relative;
}

.exp-image img {
  border-radius: var(--radius-lg);
}

.exp-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--bg-section);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-color);
}

.exp-icon {
  background: var(--grad-tertiary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.exp-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.exp-item-icon {
  background: var(--bg-soft);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  color: #3b82f6;
}

.exp-item-text h4 {
  margin-bottom: 0.25rem;
}

.exp-item-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Page Header */
.page-header {
  padding: 10rem 0 4rem;
  background: var(--bg-section);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; color: var(--text-muted); }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-method-icon {
  background: var(--bg-soft);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-primary);
}

.form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* Text Content Pages */
.content-area {
  max-width: 800px;
  margin: 0 auto;
}

.content-area h2 {
  margin: 2rem 0 1rem;
}

.content-area p {
  margin-bottom: 1.5rem;
}

.content-area ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.content-area li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #3b82f6;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .experience-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding-top: 8rem;
    text-align: center;
  }
  
  .hero-content p {
    margin: 0 auto 2rem;
  }
  
  .hero-ctas, .feature-tags {
    justify-content: center;
  }
  
  .exp-card {
    right: 0;
    bottom: -1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .header .btn {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-section);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    gap: 1.5rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}