/* =========================================
   Galen Reçete Kontrol - Ana Stil Dosyası
   ========================================= */

/* ===========================================
   1. FONT TANMLAMALARI (@font-face)
   =========================================== */

/* Unaegeo Light (300) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Unaegeo Light Italic (300) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-Light-Italic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Unaegeo Regular (400) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Unaegeo Regular Italic (400) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-Regular-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Unaegeo Medium (500) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Unaegeo Medium Italic (500) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-Medium-Italic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Unaegeo SemiBold (600) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Unaegeo SemiBold Italic (600) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-SemiBold-Italic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Unaegeo Bold (700) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Unaegeo Bold Italic (700) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-Bold-Italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Unaegeo ExtraBold (800) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Unaegeo ExtraBold Italic (800) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-ExtraBold-Italic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Unaegeo Black (900) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Unaegeo Black Italic (900) */
@font-face {
  font-family: 'Unaegeo';
  src: url('../fonts/Unageo-Black-Italic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}


/* ===========================================
   2. CSS CUSTOM PROPERTIES (Variables)
   =========================================== */

:root {
  /* Colors */
  --primary-color: #0066CC;
  --primary-dark: #004C99;
  --primary-light: #3385D6;
  
  --secondary-color: #00C853;
  --secondary-dark: #009638;
  --secondary-light: #33D36F;
  
  --accent-color: #FF6B35;
  --accent-dark: #E54D1F;
  --accent-light: #FF8A5C;
  
  --dark-color: #1A1A1A;
  --gray-dark: #333333;
  --gray-medium: #666666;
  --gray-light: #999999;
  --gray-lighter: #CCCCCC;
  
  --light-color: #F5F5F5;
  --white-color: #FFFFFF;
  
  --success-color: #28A745;
  --warning-color: #FFC107;
  --error-color: #DC3545;
  --info-color: #17A2B8;
  --whatsapp-color: #25D366;

  /* RGB components for rgba(var(--token-rgb), alpha) */
  --primary-color-rgb: 0, 102, 204;
  --secondary-color-rgb: 0, 200, 83;
  --accent-color-rgb: 255, 107, 53;
  --success-color-rgb: 40, 167, 69;
  --warning-color-rgb: 255, 193, 7;
  --error-color-rgb: 220, 53, 69;
  --info-color-rgb: 23, 162, 184;
  
  /* Typography */
  --font-family: 'Unaegeo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  
  --font-size-h1: 48px;
  --font-size-h2: 36px;
  --font-size-h3: 28px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --font-size-h6: 18px;
  
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-xxxl: 96px;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-full: 9999px;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.18);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  
  /* Container Max Widths */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-xxl: 1320px;

  /* Navbar height — used for scroll-margin-top on anchor targets */
  --navbar-height: 90px;
  
  /* Gradients */
  --gradient-primary: linear-gradient(90deg, rgba(143, 55, 233, .05) 0, rgba(7, 181, 212, .05) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}


/* ===========================================
   3. RESET & BASE STYLES
   =========================================== */

/* Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* HTML & Body */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--dark-color);
  background-color: var(--white-color);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  /* Sticky Footer Pattern */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main Content - Sticky Footer Pattern */
#main {
  flex: 1 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
  color: var(--dark-color);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

p {
  margin-bottom: var(--spacing-sm);
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus {
  color: var(--primary-dark);
  text-decoration: none;
}

/* Lists */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* ===========================================
   4. UTILITY CLASSES
   =========================================== */

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Font Weights */
.fw-light { font-weight: var(--font-weight-light); }
.fw-regular { font-weight: var(--font-weight-regular); }
.fw-medium { font-weight: var(--font-weight-medium); }
.fw-semibold { font-weight: var(--font-weight-semibold); }
.fw-bold { font-weight: var(--font-weight-bold); }

/* Text Colors */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-dark { color: var(--dark-color); }
.text-gray { color: var(--gray-medium); }
.text-light { color: var(--gray-light); }
.text-white { color: var(--white-color); }

/* Section Spacing */
/* Offset anchor targets so fixed navbar doesn't overlap the section heading */
section[id] {
  scroll-margin-top: var(--navbar-height);
}

.section {
  padding: var(--spacing-xxl) 0;
}

.section-sm {
  padding: var(--spacing-xl) 0;
}

.section-lg {
  padding: var(--spacing-xxxl) 0;
}


/* ===========================================
   İçerik devam edecek...
   =========================================== */


/* ===========================================
   5. HEADER / NAVBAR STYLES
   =========================================== */

.navbar {
  padding: var(--spacing-sm) 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: var(--spacing-xs) 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-brand .logo {
  height: 65px;
  width: auto;
  transition: height var(--transition-normal);
}

.navbar.scrolled .navbar-brand .logo {
  height: 50px;
}

.navbar-nav .nav-link {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--dark-color);
  padding: var(--spacing-xs) var(--spacing-sm);
  margin: 0 var(--spacing-xs);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary-color);
  background-color: rgba(0, 102, 204, 0.05);
}

.navbar-nav .nav-link.active {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-full);
}

.navbar-actions .btn {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.navbar-actions .btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background-color: transparent;
}

.navbar-actions .btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.navbar-actions .btn-outline-secondary {
  color: var(--gray-dark);
  border: 2px solid var(--gray-lighter);
  background-color: transparent;
}

.navbar-actions .btn-outline-secondary:hover {
  background-color: var(--gray-lighter);
  color: var(--dark-color);
}

.navbar-actions .btn-primary {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--white-color);
}

.navbar-actions .btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Navbar stacked layout: applies whenever navbar is collapsed (≤1199px, matches navbar-expand-xl) */
@media (max-width: 1199px) {
  .navbar {
    background-color: var(--white-color);
    backdrop-filter: none;
  }

  .navbar-collapse {
    background-color: var(--white-color);
  }

  .navbar-nav {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--gray-lighter);
  }
  
  .navbar-nav .nav-link {
    margin: var(--spacing-xs) 0;
  }
  
  /* Active link underline: align under text (left), not row center — wide view keeps left: 50% */
  .navbar-nav .nav-link.active::after {
    left: 4%;
    transform: none;
  }
  
  .navbar-actions {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--gray-lighter);
    flex-direction: column;
    width: 100%;
    min-width: 0;
  }
  
  .navbar-actions .btn {
    width: 100%;
    min-width: 0;
  }
  
  .navbar-actions .dropdown {
    width: 100%;
    min-width: 0;
  }
  
  /* Main content: no extra top padding in narrow view; wide view keeps 100px */
  main.page-gradient {
    padding-top: 0;
  }
  
  /* Reduce top spacing of container inside page-gradient (overrides py-5 top on narrow view only) */
  main.page-gradient .container {
    padding-top: 1rem;
  }
}


/* ===========================================
   6. HERO SECTION STYLES
   =========================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f0fe 100%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--dark-color);
  margin-bottom: var(--spacing-md);
}

.hero-title .text-primary {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  line-height: var(--line-height-relaxed);
  color: var(--gray-dark);
  max-width: 600px;
  margin-bottom: var(--spacing-lg);
}

.hero-buttons .btn {
  font-size: var(--font-size-lg);
  padding: 14px 32px;
  border-radius: var(--border-radius-lg);
  font-weight: var(--font-weight-semibold);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hero-buttons .btn-primary {
  background-color: var(--primary-color);
  border: none;
  box-shadow: var(--shadow-md);
}

.hero-buttons .btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-outline-secondary {
  color: var(--gray-dark);
  border: 2px solid var(--gray-dark);
  background-color: var(--white-color);
}

.hero-buttons .btn-outline-secondary:hover {
  background-color: var(--gray-dark);
  color: var(--white-color);
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.feature-badge {
  display: flex;
  align-items: center;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--gray-dark);
}

.feature-badge i {
  font-size: 18px;
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Background Shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-bg-shapes .shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  top: -250px;
  right: -150px;
  animation: rotate 20s linear infinite;
}

.hero-bg-shapes .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  bottom: -100px;
  left: -100px;
  animation: rotate 15s linear infinite reverse;
}

/* shape-3 (center green dot) removed for a clean, modern layout without overlays on content */

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.05;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: var(--spacing-xxl);
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
}


/* ===========================================
   7. SECTION HEADER STYLES (GLOBAL)
   =========================================== */

.section-header {
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-full);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--gray-medium);
  max-width: 700px;
  margin: var(--spacing-md) auto 0;
}


/* ===========================================
   8. WHY CHOOSE US SECTION
   =========================================== */

.why-us-section {
  background-color: var(--white-color);
  padding: var(--spacing-xxl) 0;
}

.why-card {
  background-color: var(--white-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal);
  border: 1px solid transparent;
}

.why-card:hover {
  border-color: var(--primary-color);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--border-radius-full);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.why-icon i {
  font-size: 36px;
  color: var(--white-color);
}

.why-title {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
}

.why-description {
  font-size: var(--font-size-base);
  color: var(--gray-medium);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .why-card {
    margin-bottom: var(--spacing-md);
  }
}


/* ===========================================
   9. FEATURES SECTION
   =========================================== */

.features-section {
  background: linear-gradient(180deg, var(--light-color) 0%, var(--white-color) 100%);
  padding: var(--spacing-xxl) 0;
}

.feature-card {
  background-color: var(--white-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition-normal);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  border-color: var(--primary-light);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 200, 83, 0.1));
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 28px;
  color: var(--primary-color);
  transition: color var(--transition-normal);
}

.feature-card:hover .feature-icon i {
  color: var(--white-color);
}

.feature-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
}

.feature-text {
  font-size: var(--font-size-base);
  color: var(--gray-medium);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .feature-card {
    margin-bottom: var(--spacing-md);
  }
}


/* ===========================================
   10. HOW IT WORKS SECTION
   =========================================== */

.how-it-works-section {
  background-color: var(--white-color);
  padding: var(--spacing-xxl) 0;
}

.how-it-works-content {
  background-color: var(--light-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  border-left: 5px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.how-text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--gray-dark);
  margin-bottom: var(--spacing-md);
}

.how-text strong {
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
}

.security-badges {
  margin-top: var(--spacing-xl);
}

.security-badge {
  background-color: var(--white-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.security-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 102, 204, 0.1));
  border-radius: var(--border-radius-full);
}

.security-icon i {
  font-size: 32px;
  color: var(--secondary-color);
}

.security-title {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
}

.security-text {
  font-size: var(--font-size-base);
  color: var(--gray-medium);
  line-height: var(--line-height-normal);
  margin-bottom: 0;
}


/* ===========================================
   11. TESTIMONIALS SECTION
   =========================================== */

.testimonials-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f0fe 100%);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: visible;
}

.testimonials-section .container {
  padding-left: 30px;
  padding-right: 30px;
}

.testimonial-card {
  background-color: var(--white-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.quote-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--border-radius-full);
  margin-bottom: var(--spacing-md);
}

.quote-icon i {
  font-size: 22px;
  color: var(--white-color);
}

.testimonial-text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-md);
  border-top: 2px solid var(--light-color);
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 50px;
  color: var(--primary-color);
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 4px;
}

.author-pharmacy {
  font-size: var(--font-size-sm);
  color: var(--gray-medium);
  margin-bottom: 0;
}

/* Carousel Container - Remove background shadows; overflow hidden ensures only one slide is visible at a time */
#testimonialsCarouselMobile,
#testimonialsCarouselDesktop,
#testimonialsCarouselMobile .carousel-inner,
#testimonialsCarouselDesktop .carousel-inner,
#testimonialsCarouselMobile .carousel-item,
#testimonialsCarouselDesktop .carousel-item {
  box-shadow: none;
  background: transparent;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--white-color);
  border-radius: var(--border-radius-full);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.carousel-control-icon i {
  font-size: 20px;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.carousel-control-prev:hover .carousel-control-icon i,
.carousel-control-next:hover .carousel-control-icon i {
  color: var(--white-color);
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: -50px;
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: var(--border-radius-full);
  background-color: var(--gray-lighter);
  border: none;
  opacity: 1;
  transition: all var(--transition-fast);
}

.carousel-indicators .active {
  width: 30px;
  background-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .testimonials-section {
    padding-bottom: calc(var(--spacing-xxl) + 50px);
  }

  .testimonials-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    margin-bottom: var(--spacing-md);
  }
}


/* ===========================================
   12. STATS SECTION
   =========================================== */

.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stat-card {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
}

.stat-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-md);
  background-color: rgba(0, 0, 0, 0.18);
  border-radius: var(--border-radius-lg);
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(173, 216, 230, 0.5);
  border-radius: var(--border-radius-full);
  transition: all var(--transition-normal);
}

.stat-card:hover .stat-icon {
  background-color: rgba(173, 216, 230, 0.7);
  transform: scale(1.05);
}

.stat-icon i {
  font-size: 36px;
  color: var(--white-color);
}

.stat-number {
  font-size: clamp(48px, 6vw, 64px);
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  margin: var(--spacing-sm) 0 var(--spacing-md) 0;
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: var(--spacing-xs);
}

/* Dashboard Stat Cards - Modern Style */
.dashboard-stat-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background-color: var(--white-color);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
}

.dashboard-stat-card.clickable {
  cursor: pointer;
}

.dashboard-stat-card .stat-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-lg);
  flex-shrink: 0;
}

.dashboard-stat-card .stat-icon-wrapper i {
  font-size: 24px;
  color: var(--white-color);
}

.dashboard-stat-card .stat-info {
  display: flex;
  flex-direction: column;
}

.dashboard-stat-card .stat-label {
  font-size: var(--font-size-sm);
  color: var(--gray-color);
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0;
}

.dashboard-stat-card .stat-value {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  line-height: 1.2;
}


/* ===========================================
   13. CTA SECTION (REMOVED)
   =========================================== */

/* ===========================================
   14. CONTACT SECTION
   =========================================== */

.contact-section {
  background-color: var(--light-color);
  padding: var(--spacing-xxl) 0;
}

.contact-info {
  background-color: var(--white-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-info-title {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
}

.contact-item {
  
  display: flex;
  gap: var(--spacing-md);
}

.contact-item + .contact-item {
  margin-top: 16px;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--border-radius-md);
  color: var(--white-color);
}

.contact-icon i {
  font-size: 20px;
}

.contact-details {
  flex-grow: 1;
}

.contact-label {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 4px;
}

.contact-text {
  font-size: var(--font-size-base);
  color: var(--gray-medium);
  margin-bottom: 0;
}

.contact-text a {
  color: var(--gray-medium);
  transition: color var(--transition-fast);
}

.contact-text a:hover {
  color: var(--primary-color);
}

.contact-social .social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: var(--border-radius-md);
  color: var(--gray-dark);
  font-size: 18px;
  transition: transform 0.2s ease, background-color var(--transition-fast), color var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.contact-form-wrapper {
  background-color: var(--white-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper .turnstile-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 65px;
}

.contact-form .form-group {
  margin-bottom: var(--spacing-md);
}

.contact-form .form-label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--dark-color);
  margin-bottom: var(--spacing-xs);
}

.contact-form .form-control,
.contact-form select.form-select,
.contact-form textarea.form-control {
  padding: 12px 16px;
  font-size: var(--font-size-base);
  border: 2px solid var(--gray-lighter);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form select.form-select:focus,
.contact-form textarea.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  outline: none;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  padding: 14px 32px;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--border-radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-map {
  margin-top: var(--spacing-xl);
}

.map-container {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-info {
    margin-bottom: var(--spacing-lg);
  }
}


/* ===========================================
   15. FOOTER STYLES
   =========================================== */

.footer {
  background-color: var(--dark-color);
  color: var(--gray-lighter);
  /* Sticky Footer Pattern */
  flex-shrink: 0;
}

.footer-main {
  padding: var(--spacing-xxl) 0 var(--spacing-md);
}

.footer-widget {
  margin-bottom: var(--spacing-lg);
}

.footer-widget--brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: 0;
}

.footer-widget--brand .footer-logo {
  margin-bottom: 0;
}

.footer-logo {
  margin-bottom: var(--spacing-md);
}

.footer-about-text {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--gray-lighter);
  margin-bottom: 0;
}

.footer-about-text strong {
  color: var(--white-color);
  font-weight: var(--font-weight-semibold);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  color: var(--gray-lighter);
  font-size: 16px;
  transition: transform 0.2s ease, background-color var(--transition-fast), color var(--transition-fast);
}

.footer-social-link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.footer-param-secure {
  margin: 0;
  max-width: 100%;
}

.footer-param-secure-img {
  display: block;
  width: 148px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 148 / 48;
  object-fit: contain;
}

.footer-widget-title {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-semibold);
  color: var(--white-color);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--gray-lighter);
  font-size: var(--font-size-base);
  transition: all var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  margin-bottom: 12px;
  font-size: var(--font-size-base);
  color: var(--gray-lighter);
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact i {
  flex-shrink: 0;
  width: 20px;
  color: var(--primary-color);
  margin-top: 4px;
}

.footer-contact a {
  color: var(--gray-lighter);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-copyright-bar {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: start;
}

.footer-copyright {
  font-size: var(--font-size-sm);
  color: var(--gray-lighter);
  margin-bottom: 0;
}

.footer-copyright strong {
  color: var(--white-color);
  font-weight: var(--font-weight-semibold);
}

/* Responsive */
@media (max-width: 767px) {
  .footer-widget {
    text-align: center;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-param-secure {
    text-align: center;
  }

  .footer-param-secure-img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-widget-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-copyright-bar {
    text-align: center;
  }
}


/* ===========================================
   16. SCROLL TO TOP BUTTON
   =========================================== */

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white-color);
  border: none;
  border-radius: var(--border-radius-full);
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: opacity var(--transition-normal), visibility var(--transition-normal), transform 0.2s ease, box-shadow 0.2s ease;
  z-index: var(--z-fixed);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.scroll-top-btn:active {
  transform: translateY(-2px);
}


/* ===========================================
   17. COOKIE CONSENT BANNER
   =========================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: var(--spacing-md) 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
  z-index: var(--z-fixed);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.cookie-text {
  display: flex;
  align-items: center;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  flex-grow: 1;
}

.cookie-text i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.cookie-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 8px 20px;
  font-size: var(--font-size-sm);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.cookie-actions .btn-outline-light {
  color: var(--white-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-actions .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white-color);
}

.cookie-actions .btn-light {
  background-color: var(--white-color);
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
}

.cookie-actions .btn-light:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Responsive */
@media (max-width: 767px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-actions .btn {
    width: 100%;
  }
  
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* ===========================================
   PAGE BACKGROUND GRADIENTS
   =========================================== */

/* Main page background gradient (mobile-first: padding-top per viewport below) */
main.page-gradient {
  min-height: 100vh;
  background: var(--gradient-primary);
}

@media (min-width: 1200px) {
  main.page-gradient {
    padding-top: 100px;
  }
}

/* WhatsApp button styles */
.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: var(--white-color);
  border-color: var(--whatsapp-color);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  border-color: #20BA5A;
  color: var(--white-color);
}

/* Auth page input group styles */
.auth-input-group-text {
  background-color: var(--light-color);
  border: 2px solid var(--gray-lighter);
  border-right: none;
}

/* Prevent duplicate "show password" icons (Edge native + custom toggle button) */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

.verification-code-input {
  border: 2px solid var(--gray-lighter);
  border-left: none;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.5rem;
  font-weight: 600;
}

/* ===========================================
   BUTTON STYLES (Global)
   =========================================== */

/* Primary button - using CSS variables */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white-color);
  box-shadow: var(--shadow-sm);
}

.btn-primary:disabled {
  background-color: var(--gray-light);
  border-color: var(--gray-light);
  color: var(--white-color);
  opacity: 0.6;
  cursor: not-allowed;
}

/* Outline primary button - using CSS variables */
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: transparent;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: var(--shadow-sm);
}

.btn-outline-primary:disabled {
  color: var(--gray-light);
  border-color: var(--gray-light);
  background-color: transparent;
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===========================================
   TRIAL CARD STYLES (Packages.cshtml)
   =========================================== */

/* Deneme Sürümü Kartı - Özel Tasarım */
.trial-card {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 200, 83, 0.05) 100%);
  border: 3px solid var(--primary-color);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: visible;
  transition: border-color var(--transition-normal);
}

.trial-card:hover {
  border-color: var(--secondary-color);
}

.trial-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  padding: 12px 24px;
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 10;
}

.trial-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-full);
  box-shadow: var(--shadow-md);
}

.trial-icon i {
  font-size: 36px;
  color: var(--white-color);
}

.trial-card .pricing-header {
  padding-top: 0px;
}

.trial-card .package-name {
  font-size: clamp(20px, 2.5vw, 28px);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trial-card .pricing-price {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 200, 83, 0.1));
  border-radius: var(--border-radius-lg);
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.trial-card .price {
  font-size: clamp(32px, 4.5vw, 44px);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive */
@media (max-width: 991px) {
  .trial-card {
    margin-bottom: var(--spacing-xl);
  }
}

/* ===========================================
   MOTION & ACCESSIBILITY OVERRIDES
   =========================================== */

/* Disable button transform-lift on touch-only devices (prevents sticky hover) */
@media (hover: none) {
  .btn-primary:hover,
  .btn-outline-primary:hover,
  .hero-buttons .btn-primary:hover,
  .hero-buttons .btn-outline-secondary:hover,
  .navbar-actions .btn-primary:hover,
  .contact-form .btn-primary:hover,
  .social-link:hover,
  .footer-social-link:hover,
  .scroll-top-btn:hover {
    transform: none;
  }
}

/* Respect reduced-motion preference (WCAG 2.1 SC 2.3.3) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-image {
    animation: none;
  }

  .hero-bg-shapes .shape {
    animation: none;
  }

  .scroll-top-btn {
    transition: opacity var(--transition-fast), visibility var(--transition-fast) !important;
  }
}


/* ===========================================
   BOOTSTRAP EXTENDED COLORS
   =========================================== */
/* Additional background colors using Bootstrap's color variables */
.bg-indigo {
  background-color: var(--bs-indigo) !important;
}

.bg-purple {
  background-color: var(--bs-purple) !important;
}

.bg-pink {
  background-color: var(--bs-pink) !important;
}

.bg-orange {
  background-color: var(--bs-orange) !important;
}

.bg-teal {
  background-color: var(--bs-teal) !important;
}

.bg-cyan {
  background-color: var(--bs-cyan) !important;
}
