/**
 * Modern Contact Module Styles
 * Author: DiabloDesign
 * Description: Professional contact module with responsive design
 */

/* CSS Variables for consistent styling */
:root {
  --contact-primary: #007cba;
  --contact-primary-dark: #005a8b;
  --contact-secondary: #f8f9fa;
  --contact-text: #333333;
  --contact-text-light: #666666;
  --contact-border: #e0e0e0;
  --contact-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --contact-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
  --contact-radius: 8px;
  --contact-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main container */
.mod_contact {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--user-text, var(--contact-text));
  background: var(--user-background, #fff);
  border-radius: var(--contact-radius);
  box-shadow: var(--contact-shadow);
  padding: 1.5rem;
  transition: var(--contact-transition);
  position: relative;
  overflow: hidden;
}

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

/* Modern gradient accent */
.mod_contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--user-accent, var(--contact-primary)), var(--user-accent, var(--contact-primary-dark)));
  border-radius: var(--contact-radius) var(--contact-radius) 0 0;
}

/* Text alignment classes */
.mod_contact.text-left { text-align: left; }
.mod_contact.text-center { text-align: center; }
.mod_contact.text-right { text-align: right; }

/* Text size classes */
.mod_contact.size-small { font-size: 0.85rem; }
.mod_contact.size-medium { font-size: 1rem; }
.mod_contact.size-large { font-size: 1.15rem; }

/* Logo styling */
.contact-logo {
  margin-bottom: 1.5rem;
}

.contact-logo img {
  max-width: 120px;
  height: auto;
  border-radius: var(--contact-radius);
  transition: var(--contact-transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Company name */
.contact-name {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--user-heading, var(--contact-primary));
  margin-bottom: 1rem;
  position: relative;
}

.contact-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--user-accent, var(--contact-primary)), transparent);
  border-radius: 2px;
}

.text-center .contact-name::after {
  left: 50%;
  transform: translateX(-50%);
}

.text-right .contact-name::after {
  left: auto;
  right: 0;
}

/* About section */
.contact-about {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--contact-secondary);
  border-radius: var(--contact-radius);
  border-left: 4px solid var(--user-accent, var(--contact-primary));
  color: var(--contact-text-light);
  position: relative;
}

/* Editor content styling */
.contact-about p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.contact-about h1, .contact-about h2, .contact-about h3, .contact-about h4, .contact-about h5, .contact-about h6 {
  color: var(--user-heading, var(--contact-primary));
  margin: 1rem 0 0.5rem 0;
  font-weight: 600;
}

.contact-about h1:first-child, .contact-about h2:first-child, .contact-about h3:first-child, 
.contact-about h4:first-child, .contact-about h5:first-child, .contact-about h6:first-child {
  margin-top: 0;
}

.contact-about ul, .contact-about ol {
  margin: 0.5rem 0 1rem 1.5rem;
  padding: 0;
}

.contact-about li {
  margin-bottom: 0.25rem;
}

.contact-about strong {
  color: var(--user-heading, var(--contact-primary));
  font-weight: 600;
}

.contact-about a {
  color: var(--user-link, var(--contact-primary));
  text-decoration: none;
  transition: var(--contact-transition);
}

.contact-about a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.contact-about img {
  max-width: 100%;
  height: auto;
  border-radius: var(--contact-radius);
  margin: 0.5rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-about blockquote {
  border-left: 3px solid var(--user-accent, var(--contact-primary));
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  background: rgba(0, 124, 186, 0.05);
  border-radius: 0 var(--contact-radius) var(--contact-radius) 0;
  font-style: italic;
}

.contact-about::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 2rem;
  color: var(--user-accent, var(--contact-primary));
  opacity: 0.3;
}

/* Contact details container */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Individual contact items */
.contact-address,
.contact-phone,
.contact-email {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(248, 249, 250, 0.5);
  border-radius: var(--contact-radius);
  transition: var(--contact-transition);
  border: 1px solid transparent;
}

.contact-address:hover,
.contact-phone:hover,
.contact-email:hover {
  background: var(--contact-secondary);
  border-color: var(--contact-border);
  transform: translateX(5px);
}

/* Icons */
.contact-address i,
.contact-phone i,
.contact-email i {
  font-size: 1.1em;
  width: 20px;
  text-align: center;
  margin-top: 0.1em;
  transition: var(--contact-transition);
}

.contact-address:hover i,
.contact-phone:hover i,
.contact-email:hover i {
  transform: scale(1.1);
}

/* Links */
.contact-phone a,
.contact-email a {
  text-decoration: none;
  transition: var(--contact-transition);
  position: relative;
}

.contact-phone a:hover,
.contact-email a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* Specific icon colors and styles */
.contact-address i {
  color: #28a745;
}

.contact-phone i {
  color: var(--contact-primary);
}

.contact-email i {
  color: #dc3545;
}

/* Responsive design */
@media (max-width: 768px) {
  .mod_contact {
    padding: 1rem;
    margin: 0.5rem;
  }
  
  .contact-logo img {
    max-width: 100px;
  }
  
  .contact-name {
    font-size: 1.3em;
  }
  
  .contact-details {
    gap: 0.75rem;
  }
  
  .contact-address,
  .contact-phone,
  .contact-email {
    padding: 0.5rem;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .mod_contact {
    padding: 0.75rem;
  }
  
  .size-large { font-size: 1rem; }
  .size-medium { font-size: 0.9rem; }
  .size-small { font-size: 0.8rem; }
  
  .contact-name {
    font-size: 1.2em;
  }
  
  .contact-about {
    padding: 0.75rem;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  .mod_contact {
    background: #2d3748;
    color: #e2e8f0;
  }
  
  .contact-about {
    background: #4a5568;
    color: #cbd5e0;
  }
  
  .contact-address,
  .contact-phone,
  .contact-email {
    background: rgba(74, 85, 104, 0.3);
  }
  
  .contact-address:hover,
  .contact-phone:hover,
  .contact-email:hover {
    background: rgba(74, 85, 104, 0.5);
  }
}

/* Animation for smooth loading */
.mod_contact {
  animation: contactFadeIn 0.6s ease-out;
}

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

/* Google Map styling */
.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--contact-radius);
  overflow: hidden;
  box-shadow: var(--contact-shadow);
  transition: var(--contact-transition);
  position: relative;
}

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

.google-map,
.openstreetmap-container {
  border-radius: var(--contact-radius);
  transition: var(--contact-transition);
  position: relative;
}

.google-map::before,
.openstreetmap-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--contact-primary), var(--contact-primary-dark));
  border-radius: var(--contact-radius) var(--contact-radius) 0 0;
  z-index: 1;
}

/* Map loading placeholder */
.google-map::after {
  content: '🗺️ Loading map...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--contact-text-light);
  font-size: 1.1em;
  text-align: center;
  z-index: 0;
}

/* OpenStreetMap specific styles */
.openstreetmap-container iframe {
  border-radius: var(--contact-radius);
}

.openstreetmap-container .leaflet-container {
  border-radius: var(--contact-radius);
}

/* Google Maps Embed iframe styling */
.contact-map iframe {
  border-radius: var(--contact-radius);
  box-shadow: var(--contact-shadow);
  transition: var(--contact-transition);
}

/* Custom map controls styling */
.gm-style .gm-style-iw-c {
  border-radius: var(--contact-radius) !important;
  box-shadow: var(--contact-shadow) !important;
}

.gm-style .gm-style-iw-tc::after {
  background: var(--contact-primary) !important;
}

/* Leaflet popup styling */
.leaflet-popup-content-wrapper {
  border-radius: var(--contact-radius) !important;
  box-shadow: var(--contact-shadow) !important;
}

.leaflet-popup-tip {
  background: var(--contact-primary) !important;
}

/* Responsive map */
@media (max-width: 768px) {
  .contact-map {
    margin-top: 1rem;
    border-radius: 6px;
  }
  
  .google-map,
  .openstreetmap-container {
    border-radius: 6px;
    min-height: 250px;
  }
  
  .contact-map iframe {
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .google-map,
  .openstreetmap-container {
    min-height: 200px;
  }
}

/* ========================================
   CONTACT BOX STYLE VARIANTS
   ======================================== */

/* 1. Classic Card Style (default) */
.mod_contact_classic {
  background: var(--user-background, #fff);
  border-radius: var(--contact-radius);
  box-shadow: var(--contact-shadow);
  border: 1px solid var(--user-border, var(--contact-border));
}

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

/* 2. Modern Flat Style */
.mod_contact_modern {
  background: var(--user-background, #fff);
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-left: 4px solid var(--user-accent, var(--contact-primary));
}

.mod_contact_modern:hover {
  background: var(--contact-secondary);
  border-left-width: 6px;
  border-left-color: var(--user-accent, var(--contact-primary));
}

.mod_contact_modern::before {
  display: none;
}

/* 3. Elegant Shadow Style */
.mod_contact_elegant {
  background: var(--user-background, #fff);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: none;
  overflow: hidden;
}

.mod_contact_elegant:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.mod_contact_elegant::before {
  height: 6px;
  background: linear-gradient(135deg, var(--user-accent, var(--contact-primary)), #6c63ff, #ff6b6b);
}

/* 4. Minimal Border Style */
.mod_contact_minimal {
  background: var(--user-background, transparent);
  border-radius: 0;
  box-shadow: none;
  border: 2px solid var(--user-border, var(--contact-border));
  padding: 2rem;
}

.mod_contact_minimal:hover {
  border-color: var(--user-accent, var(--contact-primary));
  background: rgba(0, 124, 186, 0.02);
}

.mod_contact_minimal::before {
  display: none;
}

/* 5. Gradient Box Style */
.mod_contact_gradient {
  background: var(--user-background, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
  border: none;
}

.mod_contact_gradient:hover {
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.4);
  transform: translateY(-3px);
}

.mod_contact_gradient::before {
  display: none;
}

/* When user sets custom background, adjust text color accordingly */
.mod_contact_gradient[style*="--user-background"] {
  color: var(--user-text);
}

/* 6. Glass Effect Style */
.mod_contact_glass {
  background: var(--user-background, rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--user-border, rgba(255, 255, 255, 0.2));
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mod_contact_glass:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.mod_contact_glass::before {
  background: rgba(255, 255, 255, 0.3);
  height: 2px;
}

.mod_contact_glass .contact-about {
  background: rgba(0, 124, 186, 0.1);
  border-left-color: rgba(0, 124, 186, 0.3);
}

/* 7. Rounded Corners Style */
.mod_contact_rounded {
  background: var(--user-background, #fff);
  border-radius: 30px;
  box-shadow: var(--contact-shadow);
  border: none;
  overflow: hidden;
}

.mod_contact_rounded:hover {
  box-shadow: var(--contact-shadow-hover);
  transform: scale(1.02);
}

.mod_contact_rounded::before {
  border-radius: 30px 30px 0 0;
  height: 8px;
}

/* 8. Neon Glow Style */
.mod_contact_neon {
  background: var(--user-background, #1a1a1a);
  border-radius: var(--contact-radius);
  box-shadow: 
    0 0 20px rgba(0, 255, 136, 0.3),
    0 0 40px rgba(0, 255, 136, 0.2),
    inset 0 0 0 2px rgba(0, 255, 136, 0.1);
  border: 1px solid var(--user-accent, rgba(0, 255, 136, 0.3));
  animation: neonPulse 3s infinite alternate;
}

.mod_contact_neon:hover {
  box-shadow: 
    0 0 30px rgba(0, 255, 136, 0.4),
    0 0 60px rgba(0, 255, 136, 0.3),
    inset 0 0 0 2px rgba(0, 255, 136, 0.2);
  animation-duration: 1.5s;
}

.mod_contact_neon::before {
  background: linear-gradient(90deg, var(--user-accent, #00ff88), var(--user-link, #00ccff));
  height: 3px;
}

@keyframes neonPulse {
  0% {
    box-shadow: 
      0 0 20px rgba(0, 255, 136, 0.3),
      0 0 40px rgba(0, 255, 136, 0.2),
      inset 0 0 0 2px rgba(0, 255, 136, 0.1);
  }
  100% {
    box-shadow: 
      0 0 25px rgba(0, 255, 136, 0.4),
      0 0 50px rgba(0, 255, 136, 0.3),
      inset 0 0 0 2px rgba(0, 255, 136, 0.2);
  }
}

/* Responsive adjustments for all styles */
@media (max-width: 768px) {
  .mod_contact_elegant {
    border-radius: 8px;
  }
  
  .mod_contact_rounded {
    border-radius: 20px;
  }
  
  .mod_contact_glass {
    border-radius: 15px;
  }
  
  .mod_contact_gradient {
    border-radius: 12px;
  }
  
  .mod_contact_minimal {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .mod_contact_rounded {
    border-radius: 15px;
  }
  
  .mod_contact_glass {
    border-radius: 12px;
  }
  
  .mod_contact_minimal {
    padding: 1rem;
  }
}

/* ===================== */
/* NEW EXTENDED STYLES */
/* ===================== */

/* 9. Corporate Professional Style */
.mod_contact_corporate {
  background: var(--user-background, #f8f9fa);
  border-left: 4px solid var(--user-accent, #007cba);
  border-top: 1px solid var(--user-border, #dee2e6);
  border-right: 1px solid var(--user-border, #dee2e6);
  border-bottom: 1px solid var(--user-border, #dee2e6);
  padding: 2rem 2rem 2rem 2.5rem;
  font-family: 'Arial', sans-serif;
  position: relative;
}

.mod_contact_corporate::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent var(--user-accent, #007cba) transparent transparent;
}

.mod_contact_corporate .contact-name {
  font-weight: 700;
  font-size: 1.4em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* 10. Vintage Retro Style */
.mod_contact_vintage {
  background: var(--user-background, #f4f1e8);
  border: 8px double var(--user-border, #8b4513);
  padding: 2rem;
  position: relative;
  font-family: 'Georgia', serif;
  box-shadow: inset 0 0 0 4px var(--user-background, #f4f1e8);
}

.mod_contact_vintage::before {
  content: '◊ ◊ ◊';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--user-background, #f4f1e8);
  padding: 0 15px;
  color: var(--user-accent, #8b4513);
  font-size: 16px;
  letter-spacing: 8px;
}

.mod_contact_vintage::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--user-accent, #8b4513) 30%, transparent 30%);
  background-size: 8px 8px;
  opacity: 0.3;
}

.mod_contact_vintage .contact-item {
  position: relative;
  padding-left: 2rem;
  margin: 1rem 0;
}

.mod_contact_vintage .contact-item::before {
  content: '❧';
  position: absolute;
  left: 0;
  color: var(--user-accent, #8b4513);
  font-size: 1.2em;
}

/* 11. Material Design Style */
.mod_contact_material {
  background: var(--user-background, #ffffff);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.mod_contact_material:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15), 0 16px 32px rgba(0,0,0,0.15);
}

.mod_contact_material::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--user-accent, #2196f3), var(--user-link, #03a9f4));
}

.mod_contact_material .contact-details {
  padding: 2rem;
}

.mod_contact_material .contact-name {
  margin: 0 0 1rem 0;
  padding: 1.5rem 2rem 0;
  font-weight: 500;
  font-size: 1.5em;
}

.mod_contact_material .contact-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
}

.mod_contact_material .contact-item:last-child {
  border-bottom: none;
}

.mod_contact_material .contact-item i {
  margin-right: 1rem;
  width: 24px;
  text-align: center;
}

/* 12. Neumorphism Soft Style */
.mod_contact_neumorphism {
  background: var(--user-background, #e0e5ec);
  border: none;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 
    9px 9px 16px rgba(163, 177, 198, 0.6),
    -9px -9px 16px rgba(255, 255, 255, 0.5);
  position: relative;
}

.mod_contact_neumorphism .contact-item {
  background: var(--user-background, #e0e5ec);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  box-shadow: 
    inset 4px 4px 8px rgba(163, 177, 198, 0.3),
    inset -4px -4px 8px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.mod_contact_neumorphism .contact-item:hover {
  box-shadow: 
    inset 6px 6px 12px rgba(163, 177, 198, 0.4),
    inset -6px -6px 12px rgba(255, 255, 255, 0.4);
}

.mod_contact_neumorphism .contact-name {
  background: var(--user-background, #e0e5ec);
  border-radius: 20px;
  padding: 1rem 2rem;
  margin: 0 0 1.5rem 0;
  box-shadow: 
    6px 6px 12px rgba(163, 177, 198, 0.4),
    -6px -6px 12px rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-align: center;
}

/* 13. Dark Mode Style */
.mod_contact_dark {
  background: var(--user-background, linear-gradient(135deg, #1e1e1e 0%, #3a3a3a 100%));
  border: 1px solid var(--user-border, #555);
  border-radius: 10px;
  padding: 2rem;
  color: var(--user-text, #ffffff);
  position: relative;
  overflow: hidden;
}

.mod_contact_dark::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--user-accent, #667eea), var(--user-link, #764ba2), var(--user-accent, #667eea));
  border-radius: 12px;
  z-index: -1;
  animation: darkBorderGlow 3s ease-in-out infinite alternate;
}

@keyframes darkBorderGlow {
  0% { opacity: 0.5; }
  100% { opacity: 0.8; }
}

.mod_contact_dark .contact-item {
  padding: 0.8rem 1rem;
  margin: 0.5rem 0;
  border-left: 3px solid var(--user-accent, #667eea);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  backdrop-filter: blur(10px);
}

.mod_contact_dark .contact-name {
  color: var(--user-heading, #ffffff);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  font-weight: 700;
}

/* 14. Colorful Bright Style */
.mod_contact_colorful {
  background: var(--user-background, linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4));
  background-size: 300% 300%;
  animation: colorfulBackground 8s ease infinite;
  border: none;
  border-radius: 20px;
  padding: 2rem;
  color: var(--user-text, #ffffff);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

@keyframes colorfulBackground {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.mod_contact_colorful::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="30" r="8" fill="rgba(255,255,255,0.2)"/></svg>');
  animation: colorfulFloat 15s linear infinite;
  pointer-events: none;
}

@keyframes colorfulFloat {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.mod_contact_colorful .contact-item {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1rem;
  margin: 0.8rem 0;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mod_contact_colorful .contact-name {
  background: rgba(255, 255, 255, 0.25);
  padding: 1rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(10px);
}

/* 15. Metallic Shine Style */
.mod_contact_metallic {
  background: var(--user-background, linear-gradient(135deg, #c3c3c3 0%, #8a8a8a 50%, #c3c3c3 100%));
  border: 2px solid var(--user-border, #999);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.3);
}

.mod_contact_metallic::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent);
  animation: metallicShine 4s ease-in-out infinite;
}

@keyframes metallicShine {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.mod_contact_metallic .contact-item {
  background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
  border: 1px solid #b0b0b0;
  border-radius: 5px;
  padding: 0.8rem 1.2rem;
  margin: 0.8rem 0;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}

.mod_contact_metallic .contact-name {
  background: linear-gradient(135deg, var(--user-accent, #4a90e2) 0%, var(--user-link, #357abd) 100%);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 16. Paper Card Style */
.mod_contact_paper {
  background: var(--user-background, #ffffff);
  border: none;
  padding: 2rem 2rem 2rem 3rem;
  position: relative;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
  transform: rotate(-0.8deg);
  transition: all 0.3s ease;
  font-family: 'Courier New', monospace;
}

.mod_contact_paper:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.25);
}

/* Red margin line */
.mod_contact_paper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  width: 2px;
  height: 100%;
  background: var(--user-accent, #ff6b6b);
}

/* Horizontal lines like notebook paper */
.mod_contact_paper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    transparent,
    transparent 1.4rem,
    rgba(0, 0, 139, 0.2) 1.4rem,
    rgba(0, 0, 139, 0.2) 1.5rem
  );
  pointer-events: none;
}

.mod_contact_paper .contact-item {
  line-height: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.mod_contact_paper .contact-name {
  font-weight: 700;
  margin-bottom: 2rem;
  text-decoration: underline;
  text-decoration-color: var(--user-accent, #ff6b6b);
  position: relative;
  z-index: 1;
}

/* Three-hole punch effect */
.mod_contact_paper {
  position: relative;
}

.mod_contact_paper .holes {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
}

.mod_contact_paper .holes::before,
.mod_contact_paper .holes::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #f0f0f0;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.mod_contact_paper .holes::before {
  top: -2rem;
}

.mod_contact_paper .holes::after {
  top: 2rem;
}

/* Responsive adjustments for new styles */
@media (max-width: 768px) {
  .mod_contact_corporate,
  .mod_contact_vintage,
  .mod_contact_material,
  .mod_contact_neumorphism,
  .mod_contact_dark,
  .mod_contact_colorful,
  .mod_contact_metallic,
  .mod_contact_paper {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .mod_contact_vintage {
    border-width: 2px;
  }
  
  .mod_contact_colorful {
    border-radius: 20px;
  }
  
  .mod_contact_neumorphism {
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .mod_contact_corporate,
  .mod_contact_vintage,
  .mod_contact_material,
  .mod_contact_neumorphism,
  .mod_contact_dark,
  .mod_contact_colorful,
  .mod_contact_metallic,
  .mod_contact_paper {
    padding: 1rem;
    margin: 0.5rem;
  }
  
  .mod_contact_vintage::before {
    font-size: 18px;
  }
  
  .mod_contact_paper::before {
    left: 30px;
  }
}

/* =============================================== */
/* VINTAGE & BUSINESS STYLES FROM HTML DEMO */
/* =============================================== */

/* 17. Vintage Paper */
.mod_contact_vintage_paper {
    background: var(--user-background, #f4f1e8);
    border: 2px solid var(--user-border, #d4af37);
    box-shadow: 
        inset 0 0 30px rgba(212, 175, 55, 0.1),
        0 0 20px rgba(0,0,0,0.1);
    position: relative;
    color: var(--user-text, #5d4e37);
    padding: 2rem;
    transition: all 0.3s ease;
}

.mod_contact_vintage_paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120,119,108,0.3) 3px, transparent 3px),
        radial-gradient(circle at 80% 20%, rgba(120,119,108,0.3) 2px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(120,119,108,0.2) 2px, transparent 2px);
    pointer-events: none;
}

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

/* 18. Old Manuscript */
.mod_contact_old_manuscript {
    background: 
        linear-gradient(90deg, transparent 40px, var(--user-background, #faf0e6) 40px),
        linear-gradient(#eee 1px, transparent 1px);
    background-size: 100% 25px;
    border-left: 4px solid var(--user-accent, #dc143c);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    color: var(--user-text, #2f1b14);
    font-family: 'Times New Roman', serif;
    padding: 2rem;
    padding-left: 3rem;
}

/* 19. Business Card */
.mod_contact_business_card {
    background: var(--user-background, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    color: var(--user-text, white);
    border-radius: 10px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.1),
        0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    transition: all 0.3s ease;
}

.mod_contact_business_card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
}

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

/* 20. Parchment */
.mod_contact_parchment {
    background: var(--user-background, #f7f3e9);
    border: 1px solid var(--user-border, #d4af37);
    border-radius: 15px;
    box-shadow: 
        inset 0 0 50px rgba(212, 175, 55, 0.1),
        0 5px 15px rgba(0,0,0,0.1);
    color: var(--user-text, #8b4513);
    position: relative;
    padding: 2rem;
}

.mod_contact_parchment::before,
.mod_contact_parchment::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.3) 50%, transparent 50%);
}

.mod_contact_parchment::before {
    top: 10px;
    left: 10px;
}

.mod_contact_parchment::after {
    bottom: 10px;
    right: 10px;
}

/* 21. Corporate Modern */
.mod_contact_corporate_modern {
    background: var(--user-background, linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%));
    border-left: 5px solid var(--user-accent, #3498db);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: var(--user-text, #2c3e50);
    font-family: 'Arial', sans-serif;
    padding: 2rem;
}

/* 22. Antique Letter */
.mod_contact_antique_letter {
    background: var(--user-background, #fdfbf7);
    border: 3px double var(--user-border, #8b4513);
    box-shadow: 
        inset 0 0 20px rgba(139, 69, 19, 0.1),
        0 0 20px rgba(0,0,0,0.1);
    color: var(--user-text, #654321);
    font-family: 'Georgia', serif;
    font-style: italic;
    padding: 2rem;
}

/* 23. Tech Card */
.mod_contact_tech_card {
    background: var(--user-background, linear-gradient(135deg, #1e3c72 0%, #2a5298 100%));
    color: var(--user-text, #00ff88);
    border: 1px solid var(--user-border, #00ff88);
    border-radius: 8px;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    padding: 2rem;
}

/* 24. Aged Paper */
.mod_contact_aged_paper {
    background: var(--user-background, 
        radial-gradient(circle at 30% 20%, rgba(139,69,19,0.1) 2px, transparent 2px),
        radial-gradient(circle at 70% 80%, rgba(139,69,19,0.1) 1px, transparent 1px),
        linear-gradient(45deg, #f4e4bc 25%, #f7e7c0 25%, #f7e7c0 50%, #f4e4bc 50%)
    );
    background-size: 30px 30px, 20px 20px, 40px 40px;
    border: 1px solid var(--user-border, #d2b48c);
    color: var(--user-text, #8b4513);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    padding: 2rem;
}

/* 25. Executive */
.mod_contact_executive {
    background: var(--user-background, linear-gradient(135deg, #2c3e50 0%, #34495e 100%));
    color: var(--user-text, #ecf0f1);
    border-top: 3px solid var(--user-accent, #e74c3c);
    border-radius: 5px;
    box-shadow: 
        0 15px 25px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
    font-weight: 300;
    padding: 2rem;
}

/* 26. Vintage Postcard */
.mod_contact_vintage_postcard {
    background: var(--user-background, #f9f1e6);
    border: 8px solid var(--user-border, #d4af37);
    border-style: ridge;
    color: var(--user-text, #8b4513);
    position: relative;
    font-family: 'Times New Roman', serif;
    padding: 2rem;
}

.mod_contact_vintage_postcard::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 3px solid var(--user-accent, #dc143c);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1), transparent);
}

/* 27. Minimalist Business */
.mod_contact_minimalist_business {
    background: var(--user-background, #ffffff);
    border: 1px solid var(--user-border, #e0e0e0);
    border-radius: 4px;
    box-shadow: 
        0 2px 10px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.1);
    color: var(--user-text, #333);
    font-family: 'Helvetica', sans-serif;
    font-weight: 300;
    padding: 2rem;
}

/* 28. Medieval Scroll */
.mod_contact_medieval_scroll {
    background: var(--user-background, linear-gradient(to bottom, #f4e4bc 0%, #e6d7a3 50%, #f4e4bc 100%));
    border: none;
    border-radius: 25px;
    color: var(--user-text, #654321);
    position: relative;
    box-shadow: 
        inset 0 0 30px rgba(101, 67, 33, 0.1),
        0 0 20px rgba(0,0,0,0.2);
    padding: 2rem;
    margin: 0 20px;
}

.mod_contact_medieval_scroll::before,
.mod_contact_medieval_scroll::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 100%;
    background: linear-gradient(to bottom, #8b4513, #654321, #8b4513);
    border-radius: 10px;
    top: 0;
}

.mod_contact_medieval_scroll::before {
    left: -10px;
}

.mod_contact_medieval_scroll::after {
    right: -10px;
}

/* 29. Premium Gold */
.mod_contact_premium_gold {
    background: var(--user-background, linear-gradient(135deg, #f7ef8a 0%, #d4af37 50%, #f7ef8a 100%));
    border: 2px solid var(--user-border, #b8860b);
    border-radius: 12px;
    color: var(--user-text, #8b4513);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    padding: 2rem;
}

/* 30. Newspaper Clipping */
.mod_contact_newspaper_clipping {
    background: var(--user-background, #f8f8f8);
    border: 1px dashed var(--user-border, #999);
    color: var(--user-text, #333);
    font-family: 'Times New Roman', serif;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    padding: 2rem;
}

.mod_contact_newspaper_clipping::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--user-border, #999);
}

/* 31. Industrial Steel */
.mod_contact_industrial_steel {
    background: var(--user-background, linear-gradient(135deg, #606c88 0%, #3f4c6b 100%));
    border: 3px solid var(--user-border, #2c3e50);
    border-radius: 0;
    color: var(--user-text, #ecf0f1);
    box-shadow: 
        inset 0 0 20px rgba(0,0,0,0.3),
        0 0 20px rgba(0,0,0,0.3);
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2rem;
}

/* 32. Retro Neon */
.mod_contact_retro_neon {
    background: var(--user-background, #0a0a0a);
    border: 2px solid var(--user-border, #ff6b6b);
    border-radius: 15px;
    color: var(--user-text, #ff6b6b);
    box-shadow: 
        0 0 20px rgba(255, 107, 107, 0.5),
        inset 0 0 20px rgba(255, 107, 107, 0.1);
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.8);
    animation: retroNeonPulse 2s infinite alternate;
    padding: 2rem;
}

@keyframes retroNeonPulse {
    from {
        box-shadow: 
            0 0 20px rgba(255, 107, 107, 0.5),
            inset 0 0 20px rgba(255, 107, 107, 0.1);
    }
    to {
        box-shadow: 
            0 0 30px rgba(255, 107, 107, 0.8),
            inset 0 0 30px rgba(255, 107, 107, 0.2);
    }
}

/* Responsive adjustments for new vintage styles */
@media (max-width: 768px) {
  .mod_contact_vintage_paper,
  .mod_contact_old_manuscript,
  .mod_contact_business_card,
  .mod_contact_parchment,
  .mod_contact_corporate_modern,
  .mod_contact_antique_letter,
  .mod_contact_tech_card,
  .mod_contact_aged_paper,
  .mod_contact_executive,
  .mod_contact_vintage_postcard,
  .mod_contact_minimalist_business,
  .mod_contact_medieval_scroll,
  .mod_contact_premium_gold,
  .mod_contact_newspaper_clipping,
  .mod_contact_industrial_steel,
  .mod_contact_retro_neon {
    padding: 1.5rem;
    margin: 1rem 0.5rem;
  }
  
  .mod_contact_medieval_scroll {
    margin: 1rem 15px;
  }
  
  .mod_contact_old_manuscript {
    padding-left: 2rem;
  }
}

@media (max-width: 480px) {
  .mod_contact_vintage_paper,
  .mod_contact_old_manuscript,
  .mod_contact_business_card,
  .mod_contact_parchment,
  .mod_contact_corporate_modern,
  .mod_contact_antique_letter,
  .mod_contact_tech_card,
  .mod_contact_aged_paper,
  .mod_contact_executive,
  .mod_contact_vintage_postcard,
  .mod_contact_minimalist_business,
  .mod_contact_medieval_scroll,
  .mod_contact_premium_gold,
  .mod_contact_newspaper_clipping,
  .mod_contact_industrial_steel,
  .mod_contact_retro_neon {
    padding: 1rem;
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  
  .mod_contact_medieval_scroll {
    margin: 0.5rem 10px;
  }
  
  .mod_contact_old_manuscript {
    padding-left: 1.5rem;
  }
}

/* =============================================== */
/* ABOUT US STYLES */
/* =============================================== */

/* Default About Style */
.contact-about.about-style-default {
  margin: 1rem 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Quote Block Style */
.contact-about.about-style-quote {
  position: relative;
  margin: 1.5rem 0;
  padding: 1.5rem 2rem;
  background: var(--user-background, rgba(248, 249, 250, 0.8));
  border-left: 4px solid var(--user-accent, #007cba);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  line-height: 1.7;
}

.contact-about.about-style-quote::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 0.5rem;
  font-size: 4rem;
  color: var(--user-accent, #007cba);
  opacity: 0.3;
  line-height: 1;
}

.contact-about.about-style-quote::after {
  content: '"';
  position: absolute;
  bottom: -0.5rem;
  right: 0.5rem;
  font-size: 4rem;
  color: var(--user-accent, #007cba);
  opacity: 0.3;
  line-height: 1;
}

/* Highlight Box Style */
.contact-about.about-style-highlight {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--user-background, #fff3cd), var(--user-background, #ffeaa7));
  border: 1px solid var(--user-accent, #f39c12);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-about.about-style-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--user-accent, #f39c12), var(--user-link, #e74c3c), var(--user-accent, #f39c12));
}

/* Callout Banner Style */
.contact-about.about-style-callout {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem 1rem 4rem;
  background: var(--user-background, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
  color: var(--user-text, white);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-about.about-style-callout::before {
  content: '!';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Handwritten Note Style */
.contact-about.about-style-handwritten {
  margin: 1.5rem 0;
  padding: 2rem;
  background: var(--user-background, #fefefe);
  border: 1px solid var(--user-border, #e0e0e0);
  border-radius: 0;
  transform: rotate(-1deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Kalam', cursive, 'Comic Sans MS', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--user-text, #2c3e50);
  position: relative;
}

.contact-about.about-style-handwritten::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.1) 10px,
    rgba(0, 0, 0, 0.1) 11px
  );
}

/* Typewriter Text Style */
.contact-about.about-style-typewriter {
  margin: 1.5rem 0;
  padding: 2rem;
  background: var(--user-background, #f8f9fa);
  border: 2px solid var(--user-border, #6c757d);
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: var(--user-text, #212529);
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-about.about-style-typewriter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      transparent,
      transparent 1.4rem,
      rgba(0, 0, 0, 0.05) 1.4rem,
      rgba(0, 0, 0, 0.05) 1.5rem
    );
  pointer-events: none;
}

/* Sticky Note Style */
.contact-about.about-style-sticky {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--user-background, linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%));
  border: none;
  border-radius: 0 0 20px 0;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.15),
    inset -2px -2px 4px rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--user-text, #2d3436);
  position: relative;
  transform: rotate(1deg);
}

.contact-about.about-style-sticky::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 1rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Blueprint Style */
.contact-about.about-style-blueprint {
  margin: 1.5rem 0;
  padding: 2rem;
  background: var(--user-background, #0f4c75);
  color: var(--user-text, #00d2ff);
  border: 1px solid var(--user-border, #00a8cc);
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  box-shadow: 
    inset 0 0 20px rgba(0, 210, 255, 0.1),
    0 0 15px rgba(0, 210, 255, 0.2);
}

.contact-about.about-style-blueprint::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 24px, rgba(0, 210, 255, 0.1) 25px),
    linear-gradient(transparent 24px, rgba(0, 210, 255, 0.1) 25px);
  background-size: 25px 25px;
  pointer-events: none;
}

/* Responsive adjustments for About styles */
@media (max-width: 768px) {
  .contact-about.about-style-quote,
  .contact-about.about-style-highlight,
  .contact-about.about-style-callout,
  .contact-about.about-style-handwritten,
  .contact-about.about-style-typewriter,
  .contact-about.about-style-sticky,
  .contact-about.about-style-blueprint {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .contact-about.about-style-callout {
    padding-left: 3rem;
  }
  
  .contact-about.about-style-quote::before,
  .contact-about.about-style-quote::after {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .contact-about.about-style-quote,
  .contact-about.about-style-highlight,
  .contact-about.about-style-callout,
  .contact-about.about-style-handwritten,
  .contact-about.about-style-typewriter,
  .contact-about.about-style-sticky,
  .contact-about.about-style-blueprint {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
  
  .contact-about.about-style-callout {
    padding-left: 2.5rem;
  }
  
  .contact-about.about-style-quote::before,
  .contact-about.about-style-quote::after {
    font-size: 2.5rem;
  }
}
