/* ============================================
   CloudFish Logo color palette
   Dark indigo, vibrant orange, reddish-orange, muted blue
   ============================================ */
:root {
  /* CloudFish logo – dark indigo (fish head, depth) */
  --color-indigo: #2D2659;
  --color-indigo-light: #3d3570;
  --color-indigo-pale: #e8e6f2;

  /* CloudFish logo – vibrant orange (energy, CTAs) */
  --color-orange: #FF8C00;
  --color-orange-dark: #e67e00;
  --color-orange-light: #ffeed9;

  /* CloudFish logo – reddish-orange / salmon (brand name, accent) */
  --color-primary: #E85D2C;
  --color-primary-dark: #c94d20;
  --color-primary-light: #ffebe5;

  /* CTA button blue */
  --color-blue: #2563eb;
  --color-blue-dark: #1d4ed8;

  /* Muted blue (tagline, secondary text) */
  --color-muted: #6A6E8C;
  --color-text: #1a1a2e;
  --color-text-muted: var(--color-muted);
  --color-bg: #ffffff;
  --color-bg-alt: #f8f7fc;
  --color-border: #e2e0ec;

  /* Map primary for components – use orange for punch */
  --color-secondary: var(--color-orange);
  --color-secondary-dark: var(--color-orange-dark);
  --color-secondary-light: var(--color-orange-light);

  /* UI */
  --color-success: #198754;
  --color-surface: #ffffff;
  --shadow-sm: 0 2px 8px rgba(45, 38, 89, 0.08);
  --shadow-md: 0 6px 20px rgba(45, 38, 89, 0.12);
  --shadow-lg: 0 16px 48px rgba(45, 38, 89, 0.15);
  --shadow-vibrant: 0 8px 24px rgba(232, 93, 44, 0.25);

  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --container: min(1120px, 100% - 2rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  position: relative;
  overflow-x: hidden;
}

/* ----- Animated background ----- */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  will-change: transform;
}
.bg-blob--1 {
  width: min(80vw, 600px);
  height: min(80vw, 600px);
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, rgba(45, 38, 89, 0.35) 0%, rgba(45, 38, 89, 0.08) 50%, transparent 70%);
  animation: blob-float-1 25s ease-in-out infinite;
}
.bg-blob--2 {
  width: min(60vw, 450px);
  height: min(60vw, 450px);
  top: 30%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, rgba(232, 93, 44, 0.08) 50%, transparent 70%);
  animation: blob-float-2 28s ease-in-out infinite;
}
.bg-blob--3 {
  width: min(50vw, 380px);
  height: min(50vw, 380px);
  bottom: -15%;
  left: 20%;
  background: radial-gradient(circle, rgba(45, 38, 89, 0.25) 0%, rgba(106, 110, 140, 0.06) 50%, transparent 70%);
  animation: blob-float-3 22s ease-in-out infinite;
}
.bg-blob--4 {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  bottom: 20%;
  right: 15%;
  background: radial-gradient(circle, rgba(232, 93, 44, 0.15) 0%, rgba(255, 140, 0, 0.06) 50%, transparent 70%);
  animation: blob-float-4 30s ease-in-out infinite;
}

@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5%, 8%) scale(1.05); }
  66% { transform: translate(-4%, -5%) scale(0.98); }
}
@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-8%, -4%) scale(1.08); }
  66% { transform: translate(3%, 6%) scale(0.95); }
}
@keyframes blob-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, -7%) scale(1.06); }
}
@keyframes blob-float-4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-5%, 5%) scale(1.04); }
  66% { transform: translate(4%, -3%) scale(0.97); }
}

@media (prefers-reduced-motion: reduce) {
  .bg-blob {
    animation: none;
  }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 38, 89, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 38, 89, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
}

/* ----- CloudFish theme: sky + clouds + fish (account, login, signup, purchase) ----- */
.cloudfish-bg-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(to bottom, #7dd3fc 0%, #38bdf8 30%, #0ea5e9 70%, #0284c7 100%);
  background-attachment: fixed;
}

.cloudfish-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cloudfish-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  animation: cloudfish-float 25s ease-in-out infinite;
}

.cloudfish-cloud--1 { width: 120px; height: 50px; top: 12%; left: 5%; box-shadow: 40px 10px 0 -5px rgba(255,255,255,0.8), 80px 0 0 -15px rgba(255,255,255,0.75); animation-duration: 30s; }
.cloudfish-cloud--2 { width: 100px; height: 45px; top: 25%; right: 15%; box-shadow: 35px 5px 0 -8px rgba(255,255,255,0.8), 70px 15px 0 -12px rgba(255,255,255,0.75); animation-duration: 35s; animation-delay: -8s; }
.cloudfish-cloud--3 { width: 90px; height: 40px; top: 45%; left: 20%; box-shadow: 30px 8px 0 -6px rgba(255,255,255,0.8), 60px 0 0 -10px rgba(255,255,255,0.75); animation-duration: 28s; animation-delay: -15s; }
.cloudfish-cloud--4 { width: 80px; height: 35px; top: 60%; right: 25%; box-shadow: 28px 5px 0 -5px rgba(255,255,255,0.8), 55px 10px 0 -8px rgba(255,255,255,0.75); animation-duration: 32s; animation-delay: -5s; }
.cloudfish-cloud--5 { width: 110px; height: 48px; top: 75%; left: 10%; box-shadow: 38px 8px 0 -8px rgba(255,255,255,0.8), 75px 5px 0 -14px rgba(255,255,255,0.75); animation-duration: 40s; animation-delay: -20s; }

@keyframes cloudfish-float {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(15px) translateY(-8px); }
  50% { transform: translateX(-10px) translateY(5px); }
  75% { transform: translateX(20px) translateY(-3px); }
}

.cloudfish-fish {
  position: absolute;
  opacity: 0.7;
  animation: cloudfish-swim linear infinite;
}

.cloudfish-fish img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cloudfish-fish--1 { top: 18%; left: -50px; width: 48px; height: 32px; animation-duration: 18s; }
.cloudfish-fish--2 { top: 35%; right: -50px; width: 40px; height: 26px; animation: cloudfish-swim-left 22s linear infinite; animation-delay: -3s; }
.cloudfish-fish--3 { top: 55%; left: -50px; width: 44px; height: 30px; animation-duration: 20s; animation-delay: -7s; }
.cloudfish-fish--4 { top: 72%; right: -50px; width: 36px; height: 24px; animation: cloudfish-swim-left 25s linear infinite; animation-delay: -12s; }
.cloudfish-fish--5 { top: 40%; left: -50px; width: 32px; height: 22px; animation-duration: 15s; animation-delay: -5s; }

@keyframes cloudfish-swim {
  from { transform: translateX(0) scaleX(-1); }
  to { transform: translateX(calc(100vw + 100px)) scaleX(-1); }
}

@keyframes cloudfish-swim-left {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100vw - 100px)); }
}

.cloudfish-bg-wrap ~ main .auth-card,
.cloudfish-bg-wrap ~ main .account-card,
.cloudfish-bg-wrap ~ main .signup-card,
.cloudfish-bg-wrap ~ main .purchase-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  .cloudfish-cloud,
  .cloudfish-fish {
    animation: none;
  }
}

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

.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--color-border);
  box-shadow: 0 1px 0 var(--color-indigo-pale);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem 1rem;
}

.logo-slp {
  display: block;
  line-height: 0;
  flex-shrink: 0;
}

.logo-slp img {
  height: 38px;
  width: auto;
  display: block;
}

.logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.2;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

/* Right-side block: Oracle + CloudFish (one flex item so header layout unchanged) */
.header-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.header-oracle-partner {
  display: flex;
  align-items: center;
}
.header-oracle-partner img {
  height: 36px;
  width: auto;
  max-width: 120px;
  display: block;
  object-fit: contain;
}

.logo-cloudfish-header {
  flex-shrink: 0;
}
.logo-cloudfish-header img {
  height: 56px;
  width: auto;
  display: block;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-cloudfish {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-indigo);
  letter-spacing: -0.02em;
}

.logo-by {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  color: var(--color-indigo);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--color-orange);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  position: relative;
  padding-right: 1.2rem;
}

.nav-dropdown-toggle::after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
  padding: 0.5rem 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--color-indigo);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-orange);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
  margin: 0 1rem;
  max-width: calc(100% - 400px);
}

.header-link {
  color: var(--color-indigo);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.header-link:hover {
  color: var(--color-orange);
}

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

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-indigo);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-primary) 100%);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-vibrant);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-orange-dark) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(232, 93, 44, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.site-header .btn-ghost {
  color: var(--color-indigo);
}

.site-header .btn-ghost:hover {
  color: var(--color-indigo);
  background: var(--color-indigo-pale);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
}

.btn-ghost:hover {
  color: var(--color-primary);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ----- Hero ----- */
.hero {
  padding: 1rem 0 1.25rem;
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-alt);
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.82) 100%),
    url("images/oracle-cloud-ecosystem-slideshow-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}

/* Hero slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
}
@keyframes hero-slide-in {
  from {
    opacity: 0;
    transform: translateX(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}
.hero-slide.hero-slide--active {
  position: absolute;
  opacity: 1;
  pointer-events: auto;
  animation: hero-slide-in 0.6s ease-out forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.hero-slide--active {
    animation: none;
  }
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--color-bg-alt);
}
.hero-slide-title {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 0.35rem;
  padding: 0 0.5rem;
  color: var(--color-indigo);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
.hero-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-indigo);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, transform 0.2s;
}
.hero-slide-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}
.hero-slide-btn--prev { left: 12px; }
.hero-slide-btn--next { right: 12px; }
.hero-slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-slide-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-slide-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.hero-slide-dot.hero-slide-dot--active {
  background: #fff;
  transform: scale(1.2);
}

.hero-slideshow-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.5rem 0 0;
}
.hero-slideshow-cta .btn {
  margin: 0;
}

.hero-image {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 320px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero-slideshow {
    max-width: 100%;
    max-height: 36vh;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .hero-slides {
    min-height: 0;
  }
  .hero-slideshow-cta {
    margin-top: 0.6rem;
  }
}

@media (max-width: 480px) {
  .hero-slideshow {
    max-height: 30vh;
  }
  .hero-slideshow-cta {
    margin-top: 0.5rem;
  }
  .hero-slideshow-cta .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .hero-slide-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
}

/* ----- App preview (how CloudFish looks when you sign up) ----- */
.section.app-preview,
.app-preview {
  padding: 1.75rem 0 2rem;
  position: relative;
  overflow: hidden;
  background-color: var(--color-indigo-pale);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52) 0%, rgba(232, 230, 242, 0.45) 50%, rgba(255, 255, 255, 0.58) 100%),
    url("images/oracle-hcm-dashboard.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.app-preview .section-lead {
  margin-bottom: 1.25rem;
}

/* ----- Oracle Cloud HCM imagery ----- */
.app-preview-frame {
  background: rgba(232, 230, 242, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  max-width: 1100px;
  margin: 0 auto;
}

.app-preview-link {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 38, 89, 0.15);
  transition: box-shadow 0.25s, transform 0.25s;
}

.app-preview-link:hover {
  box-shadow: 0 12px 40px rgba(45, 38, 89, 0.2);
  transform: translateY(-2px);
}

.app-preview-link img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.app-preview-cta {
  text-align: center;
  margin: 1.5rem 0 0;
}

.app-preview-cta .btn {
  margin: 0;
}

@media (max-width: 768px) {
  .app-preview-frame {
    padding: 0.5rem;
  }
  .app-preview-cta .btn-lg {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-indigo);
  background: rgba(45, 38, 89, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-indigo);
  margin: 0 0 1.25rem;
  max-width: 20ch;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 56ch;
  margin: 0 0 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ----- Sections ----- */
.section {
  padding: 2.25rem 0;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-indigo-pale) 100%);
}

/* App preview keeps its own HCM dashboard background (do not override) */
.section.app-preview {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52) 0%, rgba(232, 230, 242, 0.45) 50%, rgba(255, 255, 255, 0.58) 100%),
    url("images/oracle-hcm-dashboard.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-indigo);
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-lead {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 42ch;
  margin: 0 auto 1.5rem;
}

/* ----- Features (Cloud & database connectivity background) ----- */
.section.features {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-alt);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(232, 230, 242, 0.68) 50%, rgba(255, 255, 255, 0.8) 100%),
    url("images/oracle-cloud-data.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ----- Features ----- */
.feature-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

@keyframes feature-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  background: var(--color-surface);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
  opacity: 0;
  animation: feature-in 0.5s ease-out forwards;
}
.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.15s; }
.feature-card:nth-child(3) { animation-delay: 0.25s; }
.feature-card:nth-child(4) { animation-delay: 0.35s; }
.feature-card:nth-child(5) { animation-delay: 0.45s; }
.feature-card:nth-child(6) { animation-delay: 0.55s; }
.feature-card:nth-child(7) { animation-delay: 0.65s; }
.feature-card:nth-child(8) { animation-delay: 0.75s; }
.feature-card:nth-child(9) { animation-delay: 0.85s; }
.feature-card:nth-child(10) { animation-delay: 0.95s; }
.feature-card:nth-child(11) { animation-delay: 1.05s; }
.feature-card:nth-child(12) { animation-delay: 1.15s; }

@media (prefers-reduced-motion: reduce) {
  .feature-card {
    animation: none;
    opacity: 1;
  }
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card-highlight {
  border-color: var(--color-orange);
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-orange-light) 100%);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.feature-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-indigo);
  background: var(--color-orange-light);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  border: 1px solid var(--color-orange);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-indigo);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ----- Pricing ----- */
/* Pricing section: office environment background */
.section.pricing {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-alt);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(232, 230, 242, 0.72) 50%, rgba(255, 255, 255, 0.82) 100%),
    url("images/office-environment.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-surface);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-vibrant);
}

.pricing-card-featured .btn-primary {
  margin-top: auto;
}

.badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.2rem;
  color: var(--color-text);
}

.pricing-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0 0 0.6rem;
}

.price {
  margin-bottom: 0.2rem;
}

.price .amount {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-indigo);
}

.price .period {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin: 0 0 0.75rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.2rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.8rem;
  color: var(--color-text);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.pricing-card .btn {
  margin-top: auto;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

/* ----- Resources ----- */
/* Resources section: diagonal blue / pink / orange background */
.section.resources {
  background: linear-gradient(
    135deg,
    #5b7fbd 15%,
    #8b6b9e 35%,
    #d4847a 65%,
    #b88787 30%
  );
}
.section.resources .section-title,
.section.resources .section-lead {
  color: rgba(255, 255, 255, 0.98);
}
.section.resources .section-lead {
  color: rgba(255, 255, 255, 0.9);
}

.resources-tabs {
  max-width: 700px;
  margin: 0 auto;
}

.resources-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.resources-tab {
  padding: 0.6rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--color-bg-alt);
  border: 2px solid transparent;
  border-radius: var(--radius);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.resources-tab:hover {
  color: var(--color-orange);
}

.resources-tab.active {
  background: var(--color-orange-light);
  color: var(--color-orange-dark);
  border-color: var(--color-orange);
}

.resources-panel {
  display: none;
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.resources-panel.active {
  display: block;
}

.resources-panel h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.resources-panel p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.resource-list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.resource-list a:hover {
  color: var(--color-orange-dark);
}

.resource-list a:hover {
  text-decoration: underline;
}

.resource-cta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ----- Oracle features ----- */
/* Oracle new features: light image as section background */
.section.oracle-features {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-alt);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 247, 252, 0.82) 50%, rgba(255, 255, 255, 0.88) 100%),
    url("images/oracle-hcm-erp-scm-bi-data-journeys-database-light.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.oracle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.oracle-card {
  background: var(--color-surface);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-orange);
}

.oracle-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--color-indigo);
}

.oracle-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ----- What we do ----- */
/* What we do section: distinct background */
.section.what-we-do {
  background: linear-gradient(180deg, #f0eef8 0%, #e8e6f2 100%);
}

.what-we-do-content {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.what-we-do-text .company-name {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.what-we-do-text p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.what-we-do-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
}

.what-we-do-list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text);
}

.what-we-do-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
}

.partner-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-orange-light);
  color: var(--color-orange-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-orange);
}

/* ----- Testimonials ----- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  margin: 0;
  padding: 1.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-orange);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 1.25rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: auto;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-indigo);
}

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

/* ----- CTA section ----- */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--color-indigo) 100%, var(--color-indigo-light) 40%, #2a2352 0%);
  color: #0c1251;
  border-top: 4px solid var(--color-orange);
}

.cta-section .section-title,
.cta-section h2 {
  color: #0c1251;
  margin-bottom: 0.5rem;
}

.cta-section p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-primary) 100%);
  color: #ffffff;
  border: none;
  box-shadow: var(--shadow-vibrant);
}

.cta-section .btn-primary:hover {
  background: linear-gradient(135deg, var(--color-orange-dark) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 140, 0, 0.5);
  transform: translateY(-1px);
}

/* ----- Footer ----- */
.site-footer {
  padding: 1.75rem 0;
  background: linear-gradient(135deg, #7b76a8 0%, #e8b366 45%, #d4847a 100%);
  color: #2d2659;
  border-top: 3px solid var(--color-orange);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand .logo-cloudfish {
  color: #2d2659;
}

.footer-brand .logo-by {
  color: rgba(45, 38, 89, 0.85);
  font-size: 0.85rem;
  opacity: 0.95;
}

.footer-contact {
  text-align: center;
  font-size: 0.9rem;
}

.footer-contact-title {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2d2659;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-contact-item {
  margin: 0.25rem 0;
  color: #2d2659;
}

.footer-contact-item a {
  color: #2d2659;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact-item a:hover {
  color: #1a1740;
  text-decoration: underline;
}

.footer-contact-address {
  line-height: 1.4;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #2d2659;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #1a1740;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(45, 38, 89, 0.85);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .footer-contact {
    order: 2;
  }
  .footer-links {
    justify-content: center;
  }
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .header-brand .header-oracle-partner {
    display: none;
  }
  .logo-slp img {
    height: 32px;
  }
  .logo-cloudfish-header img,
  .logo img {
    height: 36px;
  }
  .header-right {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-bg);
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    display: none;
  }

  .header-right.open {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0.5rem 1rem;
    margin-top: 0;
    background: transparent;
  }

  .nav-dropdown-toggle::after {
    display: none;
  }

  .nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .header-brand .header-link {
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 0.75rem 0 1rem;
  }

  .section {
    padding: 1.75rem 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- Cookie / privacy consent banner ----- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-indigo);
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 -4px 20px rgba(45, 38, 89, 0.25);
  z-index: 1000;
}
.cookie-consent.cookie-consent--dismissed {
  display: none !important;
}
.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-consent-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}
.cookie-consent-text a {
  color: var(--color-orange-light);
  text-decoration: underline;
}
.cookie-consent-text a:hover {
  color: #fff;
}
.cookie-consent-btn {
  flex-shrink: 0;
  background: var(--color-orange);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-consent-btn:hover {
  background: var(--color-orange-dark);
}
@media (max-width: 600px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-consent-btn {
    align-self: center;
  }
}

/* ----- Chatbot bubble (bottom-right) ----- */
.chatbot-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  font-family: var(--font-sans);
}

.chatbot-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-primary) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.chatbot-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(255, 140, 0, 0.5);
}

.chatbot-icon {
  flex-shrink: 0;
}

.chatbot-panel {
  position: absolute;
  bottom: calc(56px + 12px);
  right: 0;
  width: 320px;
  max-width: calc(100vw - 2rem);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.chatbot-panel.chatbot-panel--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chatbot-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-primary) 100%);
  color: #fff;
}

.chatbot-panel-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.chatbot-panel-close {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}

.chatbot-panel-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.chatbot-panel-body {
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 320px;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chatbot-msg {
  max-width: 85%;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.chatbot-msg--bot {
  align-self: flex-start;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.chatbot-msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-primary) 100%);
  color: #fff;
  border: none;
}

.chatbot-msg-text {
  display: block;
}

.chatbot-typing .chatbot-msg-text {
  min-height: 1.2em;
}

.chatbot-dots {
  display: inline-flex;
  gap: 2px;
}

.chatbot-dots span {
  animation: chatbot-blink 0.8s ease-in-out infinite;
}

.chatbot-dots span:nth-child(2) { animation-delay: 0.15s; }
.chatbot-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatbot-blink {
  0%, 60% { opacity: 0.3; }
  100% { opacity: 1; }
}

.chatbot-form {
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.chatbot-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.chatbot-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  margin-bottom: 0.5rem;
}

.chatbot-input:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.2);
}

.chatbot-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.chatbot-input--message {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.chatbot-send {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-primary) 100%);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.chatbot-send:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 12px rgba(255, 140, 0, 0.4);
}

@media (max-width: 480px) {
  .chatbot-widget {
    bottom: 1rem;
    right: 1rem;
  }
  .chatbot-bubble {
    width: 52px;
    height: 52px;
  }
  .chatbot-panel {
    bottom: calc(52px + 10px);
    width: 300px;
  }
}

/* Contact Modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.contact-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.75);
  backdrop-filter: blur(4px);
}

.contact-modal-content {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  z-index: 1;
  transform: scale(0.95);
  transition: transform 0.3s;
}

.contact-modal[aria-hidden="false"] .contact-modal-content {
  transform: scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.contact-modal-close:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

#contact-modal-title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-indigo);
}

.contact-modal-subtitle {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.contact-form-group .required {
  color: var(--color-primary);
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.contact-form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}

.contact-form-message.success {
  display: block;
  background: var(--color-success);
  color: white;
}

.contact-form-message.error {
  display: block;
  background: #dc3545;
  color: white;
}

.contact-form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-form-actions .btn {
  flex: 1;
}

@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-modal-content {
    padding: 1.5rem;
  }
  
  #contact-modal-title {
    font-size: 1.5rem;
  }
}
