/* eCloudpod Premium UI/UX - Modern Design System */

:root {
  /* Brand Colors - Enhanced */
  --navy-dark: #0f1419;
  --navy-medium: #1a2332;
  --navy-light: #2d3748;
  --navy-accent: #4a5568;
  --orange-primary: #ff6b35;
  --orange-light: #ff8c42;
  --orange-dark: #e55a2b;
  --orange-glow: rgba(255, 107, 53, 0.2);
  
  /* Neutral Colors - Enhanced */
  --white: #ffffff;
  --gray-50: #fafbfc;
  --gray-100: #f4f5f7;
  --gray-200: #e8eaed;
  --gray-300: #dadce0;
  --gray-400: #9aa0a6;
  --gray-500: #5f6368;
  --gray-600: #3c4043;
  --gray-700: #202124;
  --gray-800: #171717;
  --gray-900: #0d1117;
  
  /* Advanced Gradients */
  --gradient-primary: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
  --gradient-accent: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
  --gradient-hero: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #2d3748 75%, #4a5568 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  
  /* Premium Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.15), 0 4px 8px -2px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 48px -12px rgba(0, 0, 0, 0.25), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3), 0 0 40px rgba(255, 107, 53, 0.1);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Spacing System */
  --section-padding: 120px 0;
  --section-padding-sm: 80px 0;
  --container-max-width: 1280px;
  --grid-gap: 2rem;
  
  /* Typography Scale */
  --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', var(--font-primary);
  --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.65;
  color: var(--gray-700);
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 4.5rem); 
  font-weight: 800; 
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 { 
  font-size: clamp(2rem, 4vw, 3.5rem); 
  font-weight: 700;
}
h3 { 
  font-size: clamp(1.5rem, 3vw, 2.25rem); 
  font-weight: 600;
}
h4 { 
  font-size: clamp(1.25rem, 2.5vw, 1.875rem); 
  font-weight: 600;
}
h5 { 
  font-size: clamp(1.125rem, 2vw, 1.5rem); 
  font-weight: 500;
}
h6 { 
  font-size: clamp(1rem, 1.5vw, 1.25rem); 
  font-weight: 500;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-600);
  font-weight: 400;
}

a {
  color: var(--orange-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--orange-dark);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-primary);
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  min-height: 56px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
  backdrop-filter: blur(8px);
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  border-color: var(--orange-primary);
  box-shadow: var(--shadow-md), 0 0 0 0 var(--orange-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-primary) 100%);
  color: var(--white);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--orange-light);
}

.btn-primary:hover::before {
  left: 100%;
}

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

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

.btn-white {
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-dark);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--white);
  color: var(--navy-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-primary);
}

/* Layout */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar specific container - more compact */
.navbar .container {
  max-width: 1000px; /* Smaller than general container */
  padding: 0 2rem;
}

/* Extra compact on larger screens */
@media (min-width: 1200px) {
  .navbar .container {
    max-width: 900px; /* Even more compact on large screens */
    padding: 0 2.5rem;
  }
  
  .nav-menu li {
    margin-left: 1.25rem; /* Tighter spacing on large screens */
  }
}

/* Terms and Conditions Page Styles */
.terms-page {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  min-height: 100vh;
}

/* Terms Introduction Section */
.terms-intro {
  margin-bottom: 3rem;
}

.intro-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.intro-card h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.intro-card p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.key-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item i {
  color: var(--orange-primary);
  font-size: 1.25rem;
}

/* Enhanced Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-item {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange-primary);
  transition: all 0.3s ease;
}

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

.service-item i {
  color: var(--orange-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-item h4 {
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
}

/* Enhanced highlight boxes */
.highlight-box {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  position: relative;
}

.highlight-box h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.highlight-box p {
  margin: 0;
  opacity: 0.95;
}

.important-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-left: 4px solid #fdcb6e;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.important-note i {
  color: #e17055;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.important-note p {
  margin: 0;
  color: #2d3748; /* Changed to darker color for better contrast on yellow background */
  font-weight: 600;
}

/* Pricing info box */
.pricing-info {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-medium));
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.pricing-info h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.pricing-info p {
  margin: 0;
  opacity: 0.9;
}

/* Security badge */
.security-badge {
  background: #e8f5e8;
  border: 1px solid #c3e6c3;
  border-left: 4px solid #00b894;
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  text-align: center;
}

.security-badge i {
  color: #00b894;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.security-badge h4 {
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.terms-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--gray-200);
}

.terms-header h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

.terms-date {
  font-weight: 600;
  color: var(--orange-primary);
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.terms-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-100);
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.terms-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange-primary);
  display: inline-block;
}

.terms-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.terms-section ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.terms-section ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.terms-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-info {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.contact-info h4 {
  color: var(--navy-dark);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info h4 i {
  color: var(--orange-primary);
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

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

.contact-info a {
  color: var(--orange-primary);
  text-decoration: none;
}

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

.terms-footer {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-300);
}

.footer-left h4,
.footer-right h4 {
  color: var(--navy-dark);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-left p,
.footer-right p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.footer-left p:last-child,
.footer-right p:last-child {
  margin-bottom: 0;
}

.acknowledgment {
  background: var(--navy-dark);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.acknowledgment i {
  color: var(--orange-primary);
  font-size: 1.5rem;
}

.acknowledgment p {
  margin: 0;
  font-weight: 500;
}

/* Text contrast fixes for dark backgrounds */
.intro-card,
.intro-card h1,
.intro-card h2,
.intro-card h3,
.intro-card h4,
.intro-card h5,
.intro-card h6,
.intro-card p,
.intro-card span,
.intro-card div {
  color: var(--white) !important;
}

.pricing-info,
.pricing-info h1,
.pricing-info h2,
.pricing-info h3,
.pricing-info h4,
.pricing-info h5,
.pricing-info h6,
.pricing-info p,
.pricing-info span,
.pricing-info div {
  color: var(--white) !important;
}

.acknowledgment,
.acknowledgment h1,
.acknowledgment h2,
.acknowledgment h3,
.acknowledgment h4,
.acknowledgment h5,
.acknowledgment h6,
.acknowledgment p,
.acknowledgment span,
.acknowledgment div {
  color: var(--white) !important;
}

/* Ensure highlight-box (orange background) has white text */
.highlight-box,
.highlight-box h1,
.highlight-box h2,
.highlight-box h3,
.highlight-box h4,
.highlight-box h5,
.highlight-box h6,
.highlight-box p,
.highlight-box span,
.highlight-box div {
  color: var(--white) !important;
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
  .terms-page {
    padding: 100px 0 60px;
  }
  
  .terms-content {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .terms-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .terms-section h2 {
    font-size: 1.35rem;
  }
  
  .terms-section ul li {
    padding-left: 1.5rem;
  }
  
  .contact-info {
    padding: 1rem;
  }
  
  .contact-info p {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, var(--gray-50) 0%, rgba(250, 251, 252, 0.8) 100%);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
}

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-heading h2 {
  margin-bottom: 1rem;
  position: relative;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-heading p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: var(--gray-600);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 20, 25, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background: rgba(15, 20, 25, 0.95);
  box-shadow: var(--shadow-lg);
  border-bottom-color: rgba(255, 107, 53, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0; /* Further reduced for compact navbar */
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.logo:hover {
  transform: scale(1.05);
  color: var(--orange-primary);
}

.logo img {
  height: 38px; /* More compact logo for smaller navbar */
  margin-right: 0.75rem;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(5deg) scale(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: 1.5rem; /* Reduced from 2rem for more compact spacing */
}

.nav-menu a {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  color: var(--white);
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px; /* Reduced to match smaller navbar */
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(45, 55, 72, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
  opacity: 0.8;
  animation: heroFloat 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: left;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--white) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--orange-primary);
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.hero p {
  font-size: 1.375rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Enhanced Services Section */
.services-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,107,53,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.7;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

/* Cloud Platforms */
.cloud-platforms {
  text-align: center;
  margin-bottom: 5rem;
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.cloud-platforms h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--navy-dark);
  position: relative;
}

.cloud-platforms h3::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.platform-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.platform-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.platform-badge:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.platform-badge:hover::before {
  transform: scaleX(1);
}

.platform-badge i {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.platform-badge span {
  font-weight: 600;
  color: var(--navy-dark);
  font-size: 0.95rem;
  text-align: center;
}

/* Platform-specific colors */
.platform-badge.aws i { color: #FF9900; }
.platform-badge.azure i { color: #0078D4; }
.platform-badge.gcp i { color: #4285F4; }
.platform-badge.alicloud i { color: #FF6A00; }

/* Premium Services Grid */
.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.service-card.premium {
  position: relative;
  background: linear-gradient(145deg, var(--white) 0%, rgba(255, 107, 53, 0.02) 100%);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.service-card.premium::before {
  background: var(--gradient-accent);
  height: 8px;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.service-badge {
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

/* Service Icon Gradients */
.aws-gradient {
  background: linear-gradient(135deg, #FF9900 0%, #FF6B00 100%);
}

.devops-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.security-gradient {
  background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
}

.performance-gradient {
  background: linear-gradient(135deg, #38B2AC 0%, #4FD1C7 100%);
}

.container-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.support-gradient {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.service-features {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s ease;
}

.feature-item i {
  color: var(--orange-primary);
  margin-right: 0.75rem;
  font-size: 1rem;
}

.feature-item:hover {
  color: var(--navy-dark);
  transform: translateX(5px);
}

.service-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.btn-service {
  background: var(--gradient-accent);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-service:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-service i {
  transition: transform 0.3s ease;
}

.btn-service:hover i {
  transform: translateX(3px);
}

.service-price {
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 1.1rem;
}

/* Success Metrics */
.success-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 5rem;
  padding: 3rem 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.metric-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gray-200), transparent);
}

.metric-card:last-child::after {
  display: none;
}

.metric-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}

.metric-content h4 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.metric-content p {
  color: var(--gray-600);
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}

/* Services Grid - Legacy */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 107, 53, 0.2);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--white);
  font-size: 2rem;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.service-card:hover .service-icon::before {
  opacity: 0.3;
}

.service-card h3 {
  margin-bottom: 1.5rem;
  color: var(--navy-dark);
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.75;
  font-size: 1rem;
}

.service-card ul {
  margin: 0;
  padding: 0;
}

.service-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.service-card ul li::before {
  content: '✓';
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.service-card:hover ul li {
  transform: translateX(4px);
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="statsGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23statsGrid)"/></svg>');
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item {
  padding: 2rem 1.5rem;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--orange-primary);
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  line-height: 1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-features {
  list-style: none;
  margin-top: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.about-features li::before {
  content: '✓';
  background: var(--orange-primary);
  color: var(--white);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

/* Footer */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--orange-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9); /* Increased from 0.6 to 0.9 for better visibility */
}

.footer-bottom p {
  margin: 0;
  font-weight: 500; /* Make the text slightly bolder */
  font-size: 1rem; /* Ensure good readable size */
  color: rgba(255, 255, 255, 0.95); /* Even more opaque for better contrast */
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
  }
  
  .nav-menu.active {
    display: flex;
    animation: slideInUp 0.3s ease-out;
  }
  
  .nav-menu li {
    margin: 0;
    margin-bottom: 1.5rem;
  }
  
  .nav-menu a {
    padding: 1rem 0;
    font-size: 1.125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .hero {
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    min-height: 600px; /* Minimum height fallback */
    padding-top: 70px; /* Reduced padding for mobile */
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .premium-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .success-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .metric-card::after {
    display: none;
  }
  
  .service-cta {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .btn-service {
    justify-content: center;
    width: 100%;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    min-height: 52px;
  }
  
  .hero {
    text-align: center;
    height: 100vh;
    height: 100dvh; /* Better mobile viewport handling */
    min-height: 550px; /* Smaller minimum for very small screens */
    padding-top: 60px; /* Even less padding on small mobile */
  }
  
  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .cloud-platforms {
    margin-bottom: 3rem;
    padding: 2rem 1rem;
  }
  
  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .platform-badge {
    padding: 1.5rem 1rem;
  }
  
  .platform-badge i {
    font-size: 2.5rem;
  }
  
  .success-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 1rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .service-header {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .service-card {
    padding: 2rem 1.25rem;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .section-heading h2::after {
    width: 60px;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  transform: translate(-50%, -50%);
  color: var(--white);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateX(0) translateY(0) scale(1);
  }
  33% {
    transform: translateX(30px) translateY(-20px) scale(1.1);
  }
  66% {
    transform: translateX(-20px) translateY(10px) scale(0.9);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
  }
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

html {
  scroll-behavior: smooth;
}

/* Privacy Policy Specific Styles */
.privacy-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border-left: 4px solid var(--orange-primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.privacy-highlight h4 {
    color: var(--navy-primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.privacy-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-top: 4px solid var(--orange-primary);
    transition: all 0.3s ease;
}

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

.privacy-card h4 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-card p, 
.privacy-card ul {
    color: #555;
    line-height: 1.6;
}

.privacy-rights {
    background: linear-gradient(135deg, #fff3e0 0%, #ffebe3 100%);
    border: 2px solid var(--orange-primary);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.privacy-rights h3 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.privacy-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.privacy-contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--orange-primary);
    text-align: center;
}

.privacy-contact-card h4 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.privacy-compliance-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.compliance-badge {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid var(--orange-primary);
    font-weight: 600;
    color: var(--navy-primary);
    text-align: center;
    min-width: 120px;
}

.privacy-important {
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
    border: 2px solid #e91e63;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.privacy-important h4 {
    color: #c2185b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Responsive adjustments for privacy page */
@media (max-width: 768px) {
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .privacy-compliance-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .compliance-badge {
        min-width: 200px;
    }
    
    .privacy-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   COMPACT PRODUCT CARDS
   ============================================= */

.products-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-compact-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    height: fit-content;
    max-height: 320px;
}

.product-compact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.3);
}

.product-compact-card.premium {
    border: 2px solid var(--orange-primary);
    box-shadow: var(--shadow-glow);
}

.product-compact-card.premium:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4), var(--shadow-xl);
}

.product-compact-card .service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.product-compact-card .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.product-compact-card .service-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-compact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-compact-card .service-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.product-compact-card .service-cta {
    margin-top: auto;
}

.product-compact-card .btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    width: 100%;
    justify-content: center;
}

.product-compact-card .btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-primary) 100%);
    text-decoration: none;
    color: white;
}

.product-compact-card .btn-service i {
    transition: transform 0.3s ease;
}

.product-compact-card .btn-service:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Compact Cards */
@media (max-width: 1024px) {
    .products-compact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }
    
    .product-compact-card {
        padding: 1.25rem;
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .products-compact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-compact-card {
        padding: 1.25rem;
        max-height: none;
    }
    
    .product-compact-card .service-description {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .compact-features {
        gap: 0.4rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .product-compact-card {
        padding: 1rem;
    }
    
    .product-compact-card h3 {
        font-size: 1.1rem;
    }
    
    .product-compact-card .service-description {
        font-size: 0.85rem;
    }
}

/* Professional Products Section Styles */
.products-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.product-pro-card {
    background: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-pro-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.product-pro-card.featured {
    border: 1px solid var(--orange-primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(255, 107, 53, 0.01));
}

.product-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, var(--orange-primary), #ff8c42);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0.75rem 0 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.875rem;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.product-icon.security {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 3px 10px rgba(240, 147, 251, 0.3);
}

.product-icon.optimization {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 3px 10px rgba(79, 172, 254, 0.3);
}

.product-icon.container {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    box-shadow: 0 3px 10px rgba(168, 237, 234, 0.3);
}

.product-pro-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.4;
    margin-bottom: 0.875rem;
    flex-grow: 1;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.product-tags span {
    background: rgba(102, 126, 234, 0.1);
    color: #4338ca;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--orange-primary);
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.375rem 0;
}

.product-link:hover {
    color: #ff8c42;
    transform: translateX(2px);
}

.product-link i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.product-link:hover i {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .products-pro-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
    }
    
    .product-pro-card {
        padding: 1rem;
    }
}
