@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-light: #faf7f2;
  --bg-sand: #f2ebd9;
  --bg-card: rgba(255, 255, 255, 0.9);
  --primary-dark: #2a2420;
  --primary-muted: #6e645a;
  --accent-gold: #c59b4e;
  --accent-gold-light: #dfcaa2;
  --accent-gold-hover: #a87e35;
  --border-gold: rgba(197, 155, 78, 0.25);
  --shadow-soft: 0 10px 35px rgba(42, 36, 32, 0.04);
  --shadow-medium: 0 15px 45px rgba(197, 155, 78, 0.1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Outfit', 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

html,
body {
  background-color: var(--bg-light);
  color: var(--primary-dark);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Background Texture & Parallax Wrapper */
.cs-wrapper {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(circle at 10% 20%, rgba(253, 251, 247, 0.8) 0%, rgba(250, 246, 240, 0.95) 100%),
    url('../assets/images/marble_showroom.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Top Navigation Bar */
.cs-header {
  width: 100%;
  max-width: 1200px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.cs-header-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.cs-header-logo {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.cs-header-logo:hover {
  transform: scale(1.03);
}

.cs-header-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin-top: 10px;
}

/* Main Container */
.cs-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px 80px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Hero Section */
.cs-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.cs-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(197, 155, 78, 0.05);
}

.cs-hero h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cs-hero h1 span {
  font-family: var(--font-display);
  font-size: 38px;
  display: block;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-top: 4px;
}

.cs-hero .lead {
  font-size: 18px;
  font-weight: 300;
  color: var(--primary-muted);
  max-width: 680px;
  margin: 0 auto 36px;
}

/* Countdown Card */
.cs-countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.cs-countdown-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  width: 100px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cs-countdown-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold));
}

.cs-countdown-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-gold);
}

.cs-countdown-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.cs-countdown-label {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary-muted);
  font-weight: 500;
}

/* Form Container */
.cs-form-container {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.cs-form {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 6px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.cs-form:focus-within {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-medium);
}

.cs-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--primary-dark);
  outline: none;
}

.cs-form input[type="email"]::placeholder {
  color: var(--primary-muted);
  opacity: 0.7;
}

.cs-form button {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: white;
  border: none;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(197, 155, 78, 0.3);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cs-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 155, 78, 0.4);
}

.cs-form button:active {
  transform: translateY(0);
}

.cs-success {
  display: none;
  margin-top: 16px;
  padding: 12px 24px;
  background: rgba(46, 125, 50, 0.08);
  color: #1b5e20;
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  animation: fadeIn 0.5s ease forwards;
}

/* Grid Sections: Cards styling */
.cs-section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}

.cs-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
}

/* Core Expertise Section */
#expertiseSection {
  margin-top: 60px;
}

.cs-expertise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cs-expertise .cs-visual-box {
  height: 420px;
}

.cs-expertise-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cs-expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-gold);
}

.cs-expertise-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(197, 155, 78, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 20px;
  margin-bottom: 8px;
  border: 1px solid var(--border-gold);
}

.cs-expertise-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-dark);
}

.cs-expertise-card p {
  font-size: 14px;
  color: var(--primary-muted);
  line-height: 1.6;
}

.cs-expertise-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.cs-expertise-card ul li {
  font-size: 13px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-expertise-card ul li::before {
  content: '✦';
  color: var(--accent-gold);
  font-size: 10px;
}

/* Image Teaser Row */
.cs-visual-teaser {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.cs-visual-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-gold);
  height: 320px;
  cursor: pointer;
}

.cs-visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.cs-visual-box:hover img {
  transform: scale(1.05);
}

.cs-visual-box img.img-zoomed {
  transform: scale(1.6);
  object-position: top;
}

.cs-visual-box:hover img.img-zoomed {
  transform: scale(1.65);
}

.cs-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(180deg, transparent, rgba(42, 36, 32, 0.95));
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cs-visual-overlay h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 500;
}

.cs-visual-overlay p {
  font-size: 13px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* Timeline Section */
#timelineSection {
  margin-top: 0px;
  scroll-margin-top: 150px;
}

.cs-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.cs-timeline-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold-light), var(--accent-gold), var(--accent-gold-light), transparent);
  z-index: 1;
}

.cs-timeline-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  z-index: 2;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cs-timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-gold);
}

.cs-timeline-year {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-gold);
  background: #fff;
  border: 1px solid var(--border-gold);
  width: 70px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 10px rgba(197, 155, 78, 0.1);
}

.cs-timeline-item h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.cs-timeline-item p {
  font-size: 12px;
  color: var(--primary-muted);
  line-height: 1.5;
}

/* Global Presence & Leadership */
#infoSplitSection {
  margin-top: 60px;
}

.cs-info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cs-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cs-info-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.cs-info-card p {
  font-size: 14px;
  color: var(--primary-muted);
  margin-bottom: 24px;
}

.cs-countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cs-country-tag {
  background: rgba(197, 155, 78, 0.08);
  border: 1px solid rgba(197, 155, 78, 0.15);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  color: var(--primary-dark);
  transition: var(--transition-smooth);
}

.cs-country-tag:hover {
  background: var(--accent-gold);
  color: white;
  border-color: var(--accent-gold);
}

.cs-leadership-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-leader-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(110, 100, 90, 0.15);
}

.cs-leader-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cs-leader-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
}

.cs-leader-title {
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Light-Themed Elegant Footer */
.cs-footer {
  width: 100%;
  background: var(--bg-sand);
  border-top: 1px solid var(--border-gold);
  padding: 30px 60px 30px;
  position: relative;
  z-index: 10;
}

.cs-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.cs-footer-about p {
  font-size: 15px;
  color: var(--primary-muted);
  max-width: 380px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-tagline {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-gold);
  font-style: italic;
}

.cs-footer-links h5,
.cs-footer-contact h5 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.cs-footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-footer-links a {
  text-decoration: none;
  font-size: 15px;
  color: var(--primary-muted);
  transition: var(--transition-smooth);
}

.cs-footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.cs-footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--primary-muted);
}

.cs-footer-contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cs-footer-contact-details i {
  color: var(--accent-gold);
  margin-top: 3px;
  font-size: 14px;
}

.cs-footer-bottom {
  max-width: 1440px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(110, 100, 90, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--primary-muted);
}

.cs-footer-legal-links {
  display: flex;
  gap: 24px;
}

.cs-footer-legal-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--primary-muted);
  transition: var(--transition-smooth);
}

.cs-footer-legal-links a:hover {
  color: var(--accent-gold);
}

.cs-footer-socials {
  display: flex;
  gap: 16px;
}

.cs-footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(110, 100, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-muted);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.cs-footer-socials a:hover {
  background: var(--accent-gold);
  color: white;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

/* Floating Side Shop Button */
.side-shop-btn {
  position: fixed;
  right: 0;
  top: 30%;
  background-color: var(--accent-gold);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 20px 10px;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: var(--transition-smooth);
}

.side-shop-btn:hover {
  background-color: var(--primary-dark);
  padding-right: 15px;
}

/* Hide shop button when mobile sidebar is open */
body.sidebar-open .side-shop-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* FAQ Section */
.cs-faq-section {
  max-width: 1000px;
  margin: 0 auto 20px;
}

.cs-faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.cs-faq-header h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.cs-faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-faq-item {
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.cs-faq-item[open] {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.cs-faq-q {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.cs-faq-q::-webkit-details-marker {
  display: none;
}

.cs-faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-gold);
}

.cs-faq-item[open] .cs-faq-q::after {
  content: '-';
}

.cs-faq-a {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eaeaea;
}

.cs-faq-a p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--primary-muted);
  line-height: 1.6;
}

/* Inquiries Section */
.cs-inquiries {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.cs-inquiries-left {
  display: flex;
  flex-direction: column;
}

.cs-inquiries-badge {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cs-inquiries-left h2 {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 24px;
}

.cs-inquiries-left p {
  font-size: 20px;
  color: var(--primary-muted);
  line-height: 1.8;
}

.cs-inquiries-right {
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.cs-inquiries-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cs-input-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cs-input-wrapper {
  position: relative;
}

.cs-input-wrapper i {
  position: absolute;
  left: 16px;
  top: 16px;
  color: #999;
  font-size: 16px;
}

.cs-input-wrapper input,
.cs-input-wrapper textarea,
.cs-input-wrapper select {
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 14px 16px 14px 42px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--primary-dark);
  background-color: #fafafa;
  outline: none;
  transition: border-color 0.3s;
}

.cs-input-wrapper textarea {
  resize: vertical;
  min-height: 100px;
}

.cs-input-wrapper input:focus,
.cs-input-wrapper textarea:focus,
.cs-input-wrapper select:focus {
  border-color: var(--accent-gold);
  background-color: #fff;
}

.cs-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.cs-checkbox-group input {
  margin-top: 4px;
  cursor: pointer;
}

.cs-checkbox-group span {
  font-size: 14px;
  color: var(--primary-muted);
  line-height: 1.6;
}

.cs-checkbox-group a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.cs-send-btn {
  background-color: #f5f5f5;
  border: 1px solid var(--primary-dark);
  color: var(--primary-dark);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 16px;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.cs-send-btn:hover {
  background-color: var(--primary-dark);
  color: #fff;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Testimonials Section */
.cs-testimonials-section {
  max-width: 1200px;
  margin: 0 auto 15px auto;
  padding: 0 20px;
}

.cs-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.cs-testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--accent-gold);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.cs-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.cs-quote-icon {
  font-size: 2.5rem;
  color: rgba(197, 155, 78, 0.25);
  margin-bottom: 20px;
}

.cs-testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary-dark);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cs-client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cs-client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  border: 1px solid var(--border-gold);
}

.cs-client-meta h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--primary-dark);
}

.cs-client-meta p {
  font-size: 0.8rem;
  color: var(--primary-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* Responsive Media Queries */
.quick-links-col {
  display: none;
}

@media (min-width: 1400px) {
  .cs-footer-container {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  }

  .quick-links-col {
    display: block;
  }
}

@media (max-width: 1024px) {
  .cs-expertise {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .cs-timeline-grid::before {
    display: none;
  }
}

@media (max-width: 1024px) and (min-width: 581px) {
  .cs-expertise .cs-visual-box:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 15px);
  }

  .cs-testimonials-grid .cs-testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .cs-footer {
    padding: 30px 24px;
  }

  .mobile-break {
    display: block;
    margin-top: 4px;
  }

  .cs-hero h1 {
    font-size: 38px;
  }

  .cs-hero h1 span {
    font-size: 28px;
  }

  .cs-visual-teaser {
    grid-template-columns: 1fr;
  }

  .cs-visual-box {
    height: 240px;
  }

  .cs-info-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cs-footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cs-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .cs-countdown {
    gap: 10px;
    flex-wrap: wrap;
  }

  .cs-countdown-box {
    width: 80px;
    height: 90px;
  }

  .cs-countdown-num {
    font-size: 26px;
  }

  .cs-countdown-label {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .cs-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 10px;
  }

  .cs-form input[type="email"] {
    text-align: center;
    padding: 10px;
  }

  .cs-form button {
    width: 100%;
  }

  .cs-expertise {
    grid-template-columns: 1fr;
  }

  .cs-timeline-grid {
    grid-template-columns: 1fr;
  }

  .cs-countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-inquiries {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 15px;
  }

  .cs-inquiries-left h2 {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .cs-inquiries-left p {
    font-size: 15px;
    line-height: 1.6;
  }

  .cs-inquiries-right {
    padding: 25px 20px;
  }

  .cs-form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cs-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}