/* ===========================
   CUSTOMER 1ST CONSULTING
   Global Styles & Design System
   =========================== */

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

:root {
  --primary:        #1A2E44;
  --accent:         #C8963C;
  --accent-light:   #F0D9A8;
  --neutral-dark:   #0F1923;
  --neutral-mid:    #4A5568;
  --neutral-light:  #F7F8FA;
  --white:          #FFFFFF;

  --glass-bg:       rgba(255, 255, 255, 0.12);
  --glass-border:   rgba(255, 255, 255, 0.25);

  --shadow-deep:    0 20px 60px rgba(0, 0, 0, 0.18), 0 6px 20px rgba(0, 0, 0, 0.10);
  --shadow-card:    0 4px 24px rgba(26, 46, 68, 0.10), 0 1px 4px rgba(26, 46, 68, 0.06);
  --shadow-hover:   0 12px 32px rgba(200, 150, 60, 0.20);

  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  --transition:     0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===========================
   RESET & BASE
   =========================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--neutral-mid);
  background: var(--white);
  overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--neutral-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--neutral-dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

h3 {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--neutral-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

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

a:hover {
  color: #a0762e;
}

/* Navigation links — luxury dark header */
.nav-link,
.nav-links a {
  color: #FFFFFF !important;
}

.nav-link:hover,
.nav-link:active {
  color: #F0C060 !important;
}

.nav-link.active {
  color: #F0C060 !important;
}

/* Mobile nav links stay white on dark */
.mobile-nav-links a {
  color: rgba(255,255,255,0.85) !important;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  color: #F0C060 !important;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200, 150, 60, 0.25);
}

.btn-primary:hover {
  background: #a0762e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: rgba(200, 150, 60, 0.08);
  color: #a0762e;
  border-color: #a0762e;
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.btn-dark:hover {
  background: var(--neutral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

/* ===========================
   CONTAINERS & SECTIONS
   =========================== */

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

section {
  position: relative;
  z-index: 1;
}

.section-padding {
  padding: 5rem 0;
}

.section-small {
  padding: 3rem 0;
}

/* ===========================
   UTILITIES
   =========================== */

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

.text-white {
  color: var(--white);
}

.text-accent {
  color: var(--accent);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

/* ===========================
   GRID & FLEX
   =========================== */

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ===========================
   IMAGES
   =========================== */

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

/* ===========================
   HEADER & NAV
   =========================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.75rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

header.scrolled .logo-text {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-link {
  position: relative;
  color: #1A2E44 !important;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  padding: 0.4rem 0.5rem;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: #C8963C;
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: #C8963C !important;
}

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

.nav-link.active {
  color: #F0C060 !important;
  font-weight: 700;
}

.nav-link.active::after {
  width: 100%;
}

header.scrolled .nav-link {
  color: #FFFFFF !important;
}

header.scrolled .nav-link.active,
header.scrolled .nav-link:hover {
  color: #F0C060 !important;
}

.contact-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 2rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.phone-link:hover {
  color: var(--accent);
  background: rgba(200, 150, 60, 0.1);
  transform: translateY(-2px);
}

header.scrolled .phone-link {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-nav {
  display: none !important;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--neutral-dark);
  transition: all 0.3s ease;
}

/* ===========================
   FOOTER
   =========================== */

footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ===========================
   BREADCRUMB
   =========================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--accent);
}

/* ===========================
   BADGE
   =========================== */

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(200, 150, 60, 0.15);
  color: var(--accent);
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.badge-white {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* ===========================
   GLASS MORPHISM
   =========================== */

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.glass-shadow {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ===========================
   STAT COUNTER
   =========================== */

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: inherit;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===========================
   CARD STYLES
   =========================== */

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  transform-style: preserve-3d;
}

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

.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

/* ===========================
   FORMS
   =========================== */

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--neutral-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 150, 60, 0.1);
}

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

.checkbox-group {
  display: grid;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 400;
  cursor: pointer;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent);
}

.form-success {
  display: none;
  padding: 1.5rem;
  background: #d4edda;
  color: #155724;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* ===========================
   RATING
   =========================== */

.stars {
  display: flex;
  gap: 0.25rem;
  font-size: 1rem;
  color: #ffc107;
  margin-bottom: 0.5rem;
}
