@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Open+Sans:wght@400;500;700&display=swap");

:root {
  --color-gold: #cfa87ab0; /* slightly transparent for overlays if needed, base is #CF987A or D4A373 */
  --color-gold-solid: #cc9c69;
  --color-dark: #1f1f1f;
  --color-text: #333333;
  --color-light-bg: #f0f2f5;
  --color-white: #ffffff;

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Open Sans", sans-serif;

  --spacing-container: 1200px;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700 !important;
  color: var(--color-dark);
  margin: 0;
}

/* Font Weights for Title */
.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-bold {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.name {
  font-family: var(--font-heading);
  font-size: 60px;
}

.hero-text {
  line-height: 1.1;
}

.hero-text #name2 {
  margin-left: 1.5rem;
}

.hero-text #name3 {
  margin-left: 5rem;
}

.container {
  max-width: var(--spacing-container);
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background-color: var(--color-gold-solid);
  color: var(--color-white);
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  border-radius: 10px;

}

.btn-primary:hover {
  background-color: #b08655;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid var(--color-white);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;

}

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

/* --- Language Switcher --- */
.lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-switcher a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  padding: 4px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.lang-switcher a:hover {
  color: var(--color-gold-solid);
}

.lang-switcher a.active {
  background-color: var(--color-gold-solid);
  color: white;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  padding-right: 20px;
}

.hero-content .logo {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.hero-content .subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Image visual right side - Desktop adjustments to stick to right */
.hero-visual {
  /* Default for mobile/tablet in flow */
  position: relative;
  width: 100%;
  align-content: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  border-radius: 10px;
}

@media (min-width: 900px) {
  .hero-visual {
    position: absolute;
    top: 60px; /* Offset to avoid overlap with lang-switcher */
    right: 0;
    bottom: 0; /* Full height of hero section */
    width: 45%; /* Occupies right side */
    height: auto;
  }

  .hero-img {
    height: 100%; /* Fill the absolute container */
    border-radius: 4px 0 0 4px; /* Only round left corners if sticking to right */

  }

  .hero-container {
    /* Since visual is absolute, we ensure context stays on left */
    max-width: var(--spacing-container);
    /* Ensure specific alignment */
    justify-content: flex-start;
  }

  .hero-content {
    max-width: 50%; /* Restrict text width so it doesn't go under image */
    padding-right: 20px;
  }
}

/* Floating contact card */
.contact-card-float {
  top: 5.5em;
  position: absolute;
  bottom: 180px;
  left: auto;
  right: 0;
  background-color: var(--color-gold-solid);
  padding: 2rem 2.5rem;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  min-width: min(400px, 90vw);
  min-height: 300px;
  z-index: 10;
  border-radius: 10px 0px 0px 10px; /* Slightly softer */
  align-content: center;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  font-size: 1rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* --- Welcome Section --- */
.welcome {
  background-color: var(--color-gold-solid);
  color: var(--color-white);
  padding: 100px 0 80px;
}

.welcome .section-title.light {
  color: var(--color-white);
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.welcome .intro-text {
  max-width: 800px;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.welcome .expertise-title {
  color: var(--color-white); /* or slightly darker/lighter */
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cards-grid {
  display: flex;
  gap: 30px;
}

.card {
  background: var(--color-white);
  color: var(--color-dark);
  flex: 1;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-radius: 15px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
}

.card-subtitle {
  display: block;
  margin-top: 5px;
  font-size: 1.3rem;
  color: #777;
  font-style: italic;
  font-family: var(--font-heading);
}

/* --- Domains Section --- */
.domains {
  background-color: var(--color-light-bg);
  padding: 80px 0;
}

.domains .section-title.dark {
  font-size: 3rem !important;
  margin-bottom: 3rem;
}

.domain-block {
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.domain-block:last-child {
  margin-bottom: 0;
}

.domain-img-wrapper {
  flex: 0 0 400px; /* Fixed width for image column */
}

.domain-img-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.domain-block:hover .domain-img-wrapper img {
  filter: grayscale(0%);
}

.domain-content {
  flex: 1;
}

.domain-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.domain-content ul {
  list-style: none; /* remove default dots */
}

.domain-content ul li {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 20px;
}

/* Custom bullet */
.domain-content ul li::before {
  content: "•";
  color: var(--color-dark);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

/* --- Values Section --- */
.values {
  background-color: var(--color-light-bg);
  padding: 0 0 100px; /* Continued from domains */
}

.values .section-title.dark {
  font-size: 3rem !important;
  margin-bottom: 3rem;
}
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.value-item {
  flex: 1;
  position: relative;
  padding-left: 60px;
}

.value-item h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.value-item p {
  font-size: 1rem;
  color: #555;
}

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

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

.footer-left .section-title.light {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.socials a {
  font-size: 2rem;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.socials a span {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.footer-right {
  text-align: right;
  font-size: 1.1rem;
}

.footer-info p {
  margin-bottom: 10px;
  font-weight: 500;
}

.footer-info a {
  color: inherit;
}

.footer-info a:hover {
  text-decoration: underline;
}

address.footer-info {
  font-style: normal;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* --- Focus States --- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold-solid);
  outline-offset: 2px;
}

/* --- Value Icons --- */
.value-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  background: var(--color-gold-solid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

/* --- Trust Badge --- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Card Descriptions --- */
.card-desc {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

/* --- Partner Block --- */
.partner-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--color-gold-solid);
  border-radius: 0 8px 8px 0;
}

.partner-block img {
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.partner-block p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.partner-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
}

/* --- Footer Legal --- */
.footer-legal {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-legal-links {
  font-size: 0.85rem;
  text-align: center;
}

.footer-legal-links a {
  margin: 0 0.5rem;
}

.footer-copyright {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 1rem;
  opacity: 0.7;
}

/* --- Footer Simple (legal pages) --- */
.footer-simple {
  text-align: center;
  padding: 30px 0;
}

.footer-simple .brand-name {
  margin-bottom: 1rem;
}

/* --- Legal Pages --- */
.legal-page {
  padding: 80px 0;
  background: var(--color-light-bg);
  min-height: 100vh;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-dark);
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.legal-page p,
.legal-page li {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  color: var(--color-gold-solid);
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}

.legal-update-date {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #666;
}

/* --- Error Page (404) --- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light-bg);
  text-align: center;
  padding: 40px 20px;
}

.error-content {
  max-width: 600px;
}

.error-code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-gold-solid);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.error-message {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.error-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-links .btn-primary {
  margin-top: 0;
}

.error-links .btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--color-gold-solid);
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid var(--color-gold-solid);
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.error-links .btn-secondary:hover {
  background-color: var(--color-gold-solid);
  color: white;
  transform: translateY(-2px);
}

.error-icon {
  font-size: 4rem;
  color: var(--color-gold-solid);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.error-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

.error-contact p {
  color: #666;
  font-size: 0.95rem;
}

.error-contact a {
  color: var(--color-gold-solid);
  font-weight: 600;
}

.error-contact a:hover {
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 700px) {
  .container {
    padding: 0 20px;

  }

  .container h2 {
    text-align: center;
  }

  .lang-switcher {
    top: 10px;
    right: 10px;
    padding: 6px 10px;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-visual {
    display: none;
    width: 100%;
    margin-top: 2rem;
  }

  .contact-card-float {
    display: none;
    bottom: auto;
    left: auto;
    width: 100%;
    min-width: auto;
    border-radius: 10px;
    padding: 1.5rem;
  }
  

  .cards-grid {
    flex-direction: column;
  }

  .domain-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .domain-content h3 {
    text-align: center;
  }

  .domain-img-wrapper {
    flex: auto;
    width: 100%;
  }

  .domain-img-wrapper img {
    height: 250px;
  }

  .name {
    font-size: 40px;
  }

  .values-grid {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

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

  .value-item {
    padding-left: 0;
    padding-top: 60px;
  }

  .value-icon {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .partner-block {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .error-code {
    font-size: 5rem;
  }

  .error-title {
    font-size: 1.8rem;
  }

  .error-links {
    flex-direction: column;
  }
}
