/*
Theme Name: LMS Global Modern
Description: Modern theme for LMS Global with beautiful gradients and professional styling
Version: 1.0
*/

/* CSS Variables for LMS Global Brand Colors */
:root {
  --primary-orange: #e37c32;
  --light-orange: #ffbb8a;
  --grey: #50504d;
  --green: #82b915;
  --purple: #935e92;
  --white: #ffffff;
  --black: #000000;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--grey);
  background: #ffffff;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--grey);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(227, 124, 50, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-orange);
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  text-align: center;
  justify-content: center;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.header-cta {
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  justify-content: center;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(227, 124, 50, 0.3);
}

/* Main Content */
.site-main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e37c32" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e37c32" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--grey);
}

.hero-section .highlight {
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(227, 124, 50, 0.4);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--grey);
  padding: 1rem 2rem;
  border: 2px solid var(--grey);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--grey);
  color: white;
  transform: translateY(-3px);
  text-decoration: none;
}

/* Services Section */
.services-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--grey);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
}

.service-card.green::before {
  background: linear-gradient(135deg, var(--green), #a4d633);
}

.service-card.purple::before {
  background: linear-gradient(135deg, var(--purple), #b47bb4);
}

.service-card.orange::before {
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--grey);
}

.service-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.service-card li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
}

.btn-service {
  background: linear-gradient(135deg, var(--grey), #6c757d);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(80, 80, 77, 0.3);
  color: white;
  text-decoration: none;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
  padding: 4rem 2rem;
  color: white;
}

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

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Service Hero Sections */
.service-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.service-hero.green {
  background: linear-gradient(135deg, var(--green), #a4d633);
}

.service-hero.purple {
  background: linear-gradient(135deg, var(--purple), #b47bb4);
}

.service-hero.orange {
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
}

.service-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
}

/* Content Sections */
.service-content, .about-content, .contact-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.service-content h2, .about-content h2, .contact-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--grey);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--grey);
}

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

.contact-method {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-method h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--grey);
}

.contact-method a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 4rem 1rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .services-section, .service-content, .about-content, .contact-content {
    padding: 3rem 1rem;
  }
}

/* WordPress Specific */
.wp-block-group {
  margin: 0;
}

.entry-content {
  margin: 0;
}

.entry-content > * {
  margin-bottom: 0;
}

/* Navigation Menu Styling */
.menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

/*
.menu-item a {
  color: var(--grey);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-item a:hover {
  color: var(--primary-orange);
}

.current-menu-item a {
  color: var(--primary-orange);
}
*/

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

.mb-4 {
  margin-bottom: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Cookie Policy Page CSS - Add this to WordPress Additional CSS */

/* Legal Pages Container */
.page-id-13 .entry-content, /* Cookie Policy page ID */
.page-id-12 .entry-content,  /* Privacy Policy page ID */ 
.page-id-10 .entry-content, /* About Us page ID */ 
.page-id-11 .entry-content /* About Us page ID */ {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: white;
    line-height: 1.8;
}

/* Legal Page Headings */
.page-id-13 h1, .page-id-12 h1, .page-id-10 h1, .page-id-11 h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--grey, #50504d);
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-orange, #e37c32);
    padding-bottom: 1rem;
}

.page-id-13 h2, .page-id-12 h2, .page-id-10 h2, .page-id-11 h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--grey, #50504d);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-orange, #e37c32);
}

/* Legal Page Paragraphs */
.page-id-13 p, .page-id-12 p, .page-id-10 p, .page-id-11 p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Legal Page Lists */
ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

li strong {
    color: var(--grey, #50504d);
    font-weight: 600;
}

/* Legal Page Links */
/*.page-id-13 a, .page-id-12 a, .page-id-10 a {
    color: var(--primary-orange, #e37c32);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}
*/

.page-id-13 a:hover, .page-id-12 a:hover, .page-id-10 a:hover, .page-id-11 a:hover {
    border-bottom: 1px solid var(--primary-orange, #e37c32);
}

/* Last Updated Text */
.page-id-13 p em, .page-id-12 p em, .page-id-10 p em, .page-id-11 p em {
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
    text-align: center;
    display: block;
    margin-bottom: 2rem;
}

/* Legal Page Container Background */
.page-id-13, .page-id-12, .page-id-10, .page-id-11 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-id-13 .entry-content, .page-id-12 .entry-content, .page-id-10 .entry-content, .page-id-11 .entry-content {
        padding: 2rem 1rem;
    }
    
    .page-id-13 h1, .page-id-12 h1, .page-id-10 h1, .page-id-11 h1 {
        font-size: 2rem;
    }
    
    .page-id-13 h2, .page-id-12 h2, .page-id-10 h2, .page-id-11 h2 {
        font-size: 1.3rem;
    }
    
    .page-id-13 p, .page-id-12 p, .page-id-10 p, .page-id-11 p, 
    .page-id-13 li, .page-id-12 li, .page-id-10 li, .page-id-11 li {
        font-size: 1rem;
        text-align: left;
    }
}
	
/* Footer */
.site-footer {
  background: var(--grey);
  color: white;
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  padding: auto;
}

.site-footer p {
 color: white;
 text-align: center;
 justify-content: center;
 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
 font-size: 16px;
 line-height:1.6;
 margin: auto;
 padding: auto;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  margin: auto;
  padding: auto;
}

.footer-nav a {
  text-align: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height:1.6;
}

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