
:root {
  --primary: #1c2f6b;
  --primary-light: #2d44a0;
  --secondary: #14224f;
  --accent: #c9a84c;
  --accent-light: #dfc06a;
  --accent-dark: #a88a2e;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --bg: #ffffff;
  --bg-alt: #eef1f6;
  --bg-dark: #0f1b3d;
  --success: #10b981;
  --error: #ef4444;
  --border: #d1d5db;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 10px 15px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 20px 40px rgba(0,0,0,0.06);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* Top Bar */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-info a {
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info a:hover { color: var(--accent); }

.top-bar-info .icon { width: 14px; height: 14px; fill: var(--accent); }

.top-bar-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-bar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
}

.top-bar-socials a:hover { background: var(--accent); }

.top-bar-socials img,
.top-bar-socials svg,
.top-bar-socials [class^="icon-"] {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar-socials [class^="icon-"]::before {
  margin: 0;
  font-size: 14px;
  line-height: 1;
}

.top-bar-socials svg {
  stroke: white;
}

/* Header / Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow-md); }

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 12px; }

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

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.2;
}

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

.nav { display: flex; align-items: center; gap: 8px; }

.nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav a:hover { color: var(--secondary); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: var(--secondary); }
.nav a.active::after { transform: scaleX(1); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .menu-btn { display: flex; }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav a { width: 100%; padding: 12px 16px; }
  .nav a::after { display: none; }

  .top-bar-info { flex-direction: column; gap: 4px; align-items: flex-start; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: url('../images/background_1_index.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.65) 0%, rgba(10,22,40,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.hero-logo { margin-bottom: 24px; }

.hero-logo img {
  height: 120px;
  width: auto;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  font-weight: 300;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-family: inherit;
}

.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: var(--accent); color: var(--primary); }
.btn-outline:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .hero-logo img { height: 80px; }
}

/* Newsletters Section */
.newsletters {
  padding: 80px 0;
  background: var(--bg);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.newsletter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.newsletter-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.newsletter-card-body {
  padding: 20px;
  text-align: center;
}

.newsletter-card-body h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.newsletter-card-body .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

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

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s;
}

.about-image:hover img { transform: scale(1.05); }

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; gap: 32px; }
  .about-image img { height: 280px; }
}

/* Services Grid (Home) */
.services-home {
  padding: 80px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--accent);
  transition: background var(--transition);
}

.service-card:hover .service-icon { background: var(--accent); color: #fff; }

.service-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.service-card a {
  color: inherit;
  display: block;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 20px 0 16px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.page-header .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.page-header-logo img { height: 64px; width: auto; }

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.04em;
  font-weight: 700;
  position: relative;
}

.page-header h1::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 36px;
  background: var(--accent);
  margin-right: 18px;
  border-radius: 3px;
  vertical-align: middle;
}

/* Content Section */
.content-section {
  padding: 60px 0;
}

.content-text {
  max-width: 900px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
}

/* Services Detail Page */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.service-detail-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.service-detail-card:hover { box-shadow: var(--shadow-md); }

.service-detail-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 24px auto 16px;
  display: block;
  border: 3px solid var(--accent);
  transition: transform var(--transition);
}

.service-detail-card:hover .service-detail-img { transform: scale(1.05); }

.service-detail-body { padding: 0 24px 24px; }

.service-detail-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
}

.service-detail-body p, .service-detail-body li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-detail-body ul { padding-left: 20px; margin-top: 8px; }
.service-detail-body li {
  list-style: disc;
  margin-bottom: 4px;
}

.service-toggle {
  text-align: center;
  margin-top: 16px;
}

.service-toggle-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--bg-alt);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: inherit;
}

.service-toggle-btn:hover { background: var(--accent); color: var(--primary); }

.service-contact-options {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  text-align: center;
}

.service-contact-options.show { display: block; }

.service-contact-options a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: var(--secondary);
  font-weight: 500;
  transition: color var(--transition);
}

.service-contact-options a:hover { color: var(--accent); }

/* Firm Page */
.firm-section { padding: 60px 0; }

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.mv-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.mv-card:hover { box-shadow: var(--shadow-md); }

.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.mv-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--accent);
}

.value-icon svg {
  width: 36px;
  height: 36px;
}

.value-card h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.ethics-section {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 48px;
}

.ethics-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  text-align: center;
}

.ethics-section p {
  color: var(--text-light);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .mission-vision { grid-template-columns: 1fr; }
  .ethics-section { padding: 24px; }
}

/* Contact Page */
.contact-section { padding: 60px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

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

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
}

.form-group .error-msg {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group input.error ~ .error-msg,
.form-group textarea.error ~ .error-msg {
  display: block;
}

.form-checkbox input.error ~ .error-msg {
  display: block;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  outline: none;
}

.form-checkbox input[type="checkbox"].error {
  outline: 2px solid var(--error);
  outline-offset: 2px;
  border-radius: 2px;
}

.form-checkbox {
  flex-wrap: wrap;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-light);
  white-space: nowrap;
}

.form-checkbox a {
  color: var(--secondary);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.form-submit:hover:not(:disabled) {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--accent);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-info-card a:hover { color: var(--accent); }

.branches-section {
  padding: 60px 0;
  background: var(--bg-alt);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.branch-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.branch-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.branch-card iframe {
  width: 100%;
  height: 250px;
  border: none;
}

.branch-card-body {
  padding: 20px;
  text-align: center;
}

.branch-card-body h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.branch-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }
}

/* Clients Page */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  align-items: center;
  justify-items: center;
  padding: 40px 0;
}

.client-logo {
  max-height: 100px;
  width: auto;
  filter: grayscale(50%);
  opacity: 0.8;
  transition: all var(--transition);
}

.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.sectors-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 32px auto 0;
}

.sectors-list li {
  padding: 12px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: all var(--transition);
  flex: 0 1 auto;
}

.sectors-list li:hover {
  border-color: var(--accent);
  color: var(--primary);
}

/* Data Protection Page */
.data-protection {
  padding: 60px 0;
}

.data-protection p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

.data-protection b {
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.footer-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}

.footer-logo p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}

.footer-contact-item div {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-contact-item a {
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-socials a:hover { background: var(--accent); }

.footer-socials img,
.footer-socials svg,
.footer-socials [class^="icon-"] {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials [class^="icon-"]::before {
  margin: 0;
  font-size: 16px;
  line-height: 1;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Success message */
.success-message {
  display: none;
  padding: 16px 24px;
  background: #d1fae5;
  color: #065f46;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 500;
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  padding: 16px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner a:hover { color: var(--accent-light); }

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--primary);
}

.cookie-btn-accept:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 640px) {
  .cookie-banner .container { flex-direction: column; text-align: center; }
  .cookie-banner-actions { width: 100%; justify-content: center; }
}
