/* USA Style.css */

/* Modern Design System Variables */
:root {
    --primary-red: #DC143C;
    --primary-blue: #1877f3;
    --accent-white: #FFFFFF;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #DC143C 0%, #1877f3 100%);
    --shadow-light: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 32px rgba(0,0,0,0.16);
    --border-radius: 16px;
    --border-radius-small: 8px;
}

* {
    box-sizing: border-box;
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 0;
    padding: 0;
}

/* Header CSS Reset - Prevents any interference */
header, header *, header .american-flag, header .flag-stripe, header .header-content, header .main-nav, header .nav-link, header .nav-separator {
    box-sizing: border-box !important;
}

/* Modern Header - Enhanced Specificity */
header {
    position: relative !important;
    background: var(--bg-gradient) !important;
    box-shadow: var(--shadow-medium) !important;
    overflow: hidden;
    z-index: 100;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220,20,60,0.1) 0%, rgba(24,119,243,0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.american-flag {
    width: 100% !important;
    height: 6px !important;
    display: flex !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    margin: 0 !important;
    padding: 0 !important;
}

.flag-stripe {
    flex: 1 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.flag-stripe:nth-child(1) { background: #DC143C !important; }
.flag-stripe:nth-child(2) { background: #FFFFFF !important; }
.flag-stripe:nth-child(3) { background: #1877f3 !important; }

.header-content {
    padding: 2rem 0 !important;
    text-align: center !important;
    position: relative;
    z-index: 2;
    margin: 0 !important;
}

.header-content h1, header h1 {
    color: #FFFFFF !important;
    margin: 0 0 1rem 0 !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    text-align: center !important;
    letter-spacing: -0.02em;
    padding: 0 !important;
}

.main-nav {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    padding: 0 !important;
    list-style: none !important;
}

.nav-link, .main-nav .nav-link, header .nav-link {
    color: #FFFFFF !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    background: rgba(255,255,255,0.1) !important;
    font-size: 0.9rem !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    display: inline-block !important;
    margin: 0 !important;
}

.nav-link:hover, .main-nav .nav-link:hover, header .nav-link:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    text-decoration: none !important;
}

.nav-separator {
    color: rgba(255,255,255,0.6) !important;
    margin: 0 0.25rem !important;
    font-weight: bold !important;
    display: inline !important;
}

/* Legacy Navigation Support - Maximum Specificity */
header nav ul, nav ul, .main-nav ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
}

header nav ul li, nav ul li, .main-nav ul li {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

header nav ul li a, nav ul li a, .main-nav ul li a { 
    color: #FFFFFF !important; 
    text-decoration: none !important; 
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    background: rgba(255,255,255,0.1) !important;
    font-size: 0.9rem !important;
}

header nav ul li a:hover, nav ul li a:hover, .main-nav ul li a:hover, .nav-link:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px) !important;
}

/* Modern Main Content */
main { 
    padding: 2rem 1rem; 
    max-width: 1200px; 
    margin: auto; 
    background: transparent;
}

/* Modern Content Sections */
section {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255,255,255,0.2);
}

section img { 
    display: block; 
    margin: 2rem auto; 
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
    max-width: 100%;
    height: auto;
}

section h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

section p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

section ul, section ol {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1rem 0 1.5rem 2rem;
}

section li {
    margin-bottom: 0.5rem;
}

/* Modern Footer */
footer { 
    background: var(--bg-gradient); 
    color: white; 
    padding: 2rem 0 1.5rem; 
    margin-top: 3rem;
}

video { 
    display: block; 
    margin: 2rem auto; 
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
    max-width: 100%;
    height: auto;
}

/* Modern CTA Buttons */
.cta-button, .btn, button[type="submit"] {
    display: inline-block;
    background: var(--bg-gradient);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 1rem 0.5rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::before, .btn::before, button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before, .btn:hover::before, button[type="submit"]:hover::before {
    left: 100%;
}

.cta-button:hover, .btn:hover, button[type="submit"]:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
    color: #fff;
    text-decoration: none;
}

.footer-container {
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 2rem;
  background: transparent;
  color: white;
  text-align: center;
}
.social-links {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 1.5rem; 
  margin-bottom: 1.5rem;
}
.social-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.social-links a {
  color: white; 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
  gap: 0.5rem; 
  padding: 0.4rem 0.75rem; 
  border-radius: 8px; 
  transition: all 0.3s ease; 
  background: rgba(255,255,255,0.1);
  font-size: 0.95rem;
  min-width: auto;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
  background: rgba(255,255,255,0.2);
  color: white;
  transform: translateY(-2px);
}

.social-links a i {
  width: 20px;
  font-size: 18px;
  vertical-align: middle;
  transition: color 0.2s;
}
/* Individual icon colors maintained */
.fa-facebook-f { color: #1877f3; }
.fa-instagram { color: #e4405f; }
.fa-youtube { color: #ff0000; }
.fa-whatsapp { color: #25d366; }
.fa-linkedin-in { color: #0a66c2; }
.fa-envelope { color: #fbbc05; }
.social-links a:hover {
  background: rgba(255,255,255,0.2);
  color: white;
  transform: translateY(-2px);
}
.social-links a:hover .fa-facebook-f,
.social-links a:hover .fa-instagram,
.social-links a:hover .fa-youtube,
.social-links a:hover .fa-whatsapp,
.social-links a:hover .fa-linkedin-in,
.social-links a:hover .fa-envelope {
  color: #FFFFFF;
}
.footer-note {
  text-align: center; 
  padding-top: 1.5rem; 
  border-top: 1px solid rgba(255,255,255,0.2); 
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-top: 1.5rem;
}

/* Compact Footer Content */
.footer-note {
  text-align: center; 
  padding-top: 1.5rem; 
  border-top: 1px solid rgba(255,255,255,0.2); 
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-top: 1.5rem;
}
.footer-note p {
  margin: 0.4rem 0 !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
}

.footer-note .footer-links {
  margin: 0.4rem 0 !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
}

.footer-note .footer-links a {
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none !important;
  margin: 0 0.75rem !important;
  font-weight: 600 !important;
}

.footer-note .footer-links a:hover {
  color: #FFFFFF !important;
  text-decoration: underline !important;
}
/* Modern Gallery Styles */
.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Gallery Section Styles */
.gallery-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 0.5rem;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 1rem;
  padding: 1rem 0.5rem;
}

.section-badge {
  display: inline-block;
  background: var(--bg-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.section-badge::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.5s;
}

.section-badge:hover::before {
  left: 100%;
}

.gallery-intro h2 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-intro p {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* Bottom CTA Section */
.bottom-cta-section {
  text-align: center;
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.9) 100%);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.cta-content h3 {
  color: var(--primary-orange);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-cta-button {
  display: inline-block;
  background: var(--bg-gradient);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 1rem 0.5rem;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.bottom-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.bottom-cta-button:hover::before {
  left: 100%;
}

.bottom-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-heavy);
  color: #fff;
  text-decoration: none;
}
/* Hero Section Styles */
.hero-section {
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, rgba(255,153,51,0.1) 0%, rgba(19,136,8,0.1) 100%);
  padding: 4rem 2rem;
  border-radius: var(--border-radius);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  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,153,51,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: var(--bg-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: inline-block;
  background: var(--bg-gradient);
  color: #fff;
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: var(--shadow-heavy);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  color: #fff;
  text-decoration: none;
}
.gallery-title {
  text-align: center;
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, rgba(220,20,60,0.1) 0%, rgba(24,119,243,0.1) 100%);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.gallery-intro::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  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(220,20,60,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

/* Adjusting gallery-intro paragraph for consistent display */
.gallery-intro p {
    max-width: 850px; /* Slightly increase width */
    font-size: 1.1rem; /* Adjust font size */
}

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

.gallery-intro * {
  position: relative;
  z-index: 1;
}

.gallery-intro h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-intro p {
  font-size: 1.2rem;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gallery-item, .transformation-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.gallery-item:hover, .transformation-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-red);
}

.gallery-img, .transformation-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img, .transformation-card:hover .transformation-image {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(248,249,250,0.9);
  backdrop-filter: blur(10px);
}

.transformation-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.transformation-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.transformation-location {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
  font-weight: 400;
}

.condition-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-medium);
}

/* Modern Modal Styles */
.modal, .story-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  animation: modalFadeIn 0.3s ease-out;
  justify-content: center;
  align-items: center;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: #fff;
  margin: 2% auto;
  padding: 0;
  border-radius: var(--border-radius);
  width: 95%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-heavy);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from { 
    transform: translateY(-50px) scale(0.95);
    opacity: 0;
  }
  to { 
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-header {
  background: var(--bg-gradient);
  color: white;
  padding: 2rem;
  text-align: center;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  position: relative;
}

.modal-header::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="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.modal-header * {
  position: relative;
  z-index: 1;
}

.modal-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.modal-header p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

.modal-close, .close {
  color: white;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.modal-close:hover, .close:hover {
  background: rgba(0,0,0,0.4);
  transform: scale(1.1);
}

.modal-img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  background: var(--bg-light);
  border-radius: var(--border-radius-small);
  margin-bottom: 1rem;
}

.modal-body {
  padding: 2rem;
}

/* Compact Footer Content */
.footer-note {
  text-align: center; 
  padding-top: 1.5rem; 
  border-top: 1px solid rgba(255,255,255,0.2); 
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-top: 1.5rem;
}

.footer-note p {
  margin: 0.4rem 0 !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
}

.footer-note .footer-links {
  margin: 0.4rem 0 !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
}

.footer-note .footer-links a {
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none !important;
  margin: 0 0.75rem !important;
  font-weight: 600 !important;
}

.footer-note .footer-links a:hover {
  color: #FFFFFF !important;
  text-decoration: underline !important;
}

/* Modern CTA Section */
.cta-section {
  text-align: center;
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.9) 100%);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.cta-section h3 {
  color: var(--primary-red);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
   /* Hero Section Mobile Styles */
  .hero-section {
    padding: 3rem 1.5rem;
    margin-bottom: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-stats {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .hero-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .modal-content {
    width: 98%;
    margin: 5% auto;
    max-height: 95vh;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .story-text {
    font-size: 1rem;
    text-align: left;
  }

  .story-text::first-letter {
    font-size: 2.5rem;
    margin-right: 0.3rem;
  }
 						 
  .transformation-card, .gallery-item {
    max-width: 100%;
    margin: 0 auto;
  }

  .gallery-intro {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .gallery-intro h2, .gallery-title {
    font-size: 2rem;
  }

  .gallery-intro p {
    font-size: 1rem;
    line-height: 1.6;					 
  }

  .cta-button, .btn {
    display: block;
    margin: 1rem auto;
    max-width: 280px;
  }

  .header-content h1, header h1 {
    font-size: 2rem !important;
  }

  .main-nav {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.25rem !important;
  }

  .nav-link, .main-nav .nav-link, header .nav-link {
    font-size: 0.9rem !important;
    padding: 0.4rem 0.8rem !important;
  }

  .nav-separator {
    display: none !important;
  }

  .transformation-overlay {
    padding: 1.5rem 1rem 1rem;
  }

  .transformation-name {
    font-size: 1.1rem;
  }

  .transformation-location {
    font-size: 0.8rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  section {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  section h2 {
    font-size: 1.75rem;
  }

  section h3 {
    font-size: 1.25rem;
  }

  main {
    padding: 1rem 0.5rem;
  }
  
   /* Mobile list adjustments */
  ul.two-columns {
    columns: 1;
  }
  
  ul.inline {
    flex-direction: column;
    gap: 0.3rem;
  }
				
  /* Mobile footer optimizations */
  footer {
    padding: 1.5rem 0 1rem !important;
    margin-top: 2rem !important;
  }

  .footer-container {
    padding: 0 1rem !important;
  }
  
  .social-links {
    gap: 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  .social-row {
    gap: 0.5rem !important;
  }
  
  .social-links a {
    padding: 0.3rem 0.5rem !important;
    font-size: 0.9rem !important;
  }
  
  .footer-note {
    padding-top: 1rem !important;
    margin-top: 1rem !important;
  }
  
  .footer-note div {
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    padding: 1rem 0.5rem;
  }
  
  /* Hero Section Extra Small Mobile */
  .hero-section {
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .gallery-img {
    height: 300px;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .modal-header h3 {
    font-size: 1.5rem;
  }

  .close, .modal-close {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    right: 1rem;
    top: 1rem;
  }

  .header-content h1, header h1 {
    font-size: 1.75rem;
  }

  section {
    padding: 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.transformation-card:focus,
.gallery-item:focus,
.cta-button:focus,
.btn:focus,
.nav-link:focus,
.main-nav .nav-link:focus,
header .nav-link:focus,
header nav ul li a:focus, 
nav ul li a:focus,
.main-nav ul li a:focus {
  outline: 3px solid var(--primary-blue) !important;
  outline-offset: 2px !important;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Privacy Policy Styles */
.privacy-container {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 40px 32px;
    line-height: 1.6;
}

.privacy-container h1 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 32px;
    border-bottom: 3px solid var(--primary-blue);
    padding-bottom: 16px;
}

.privacy-container h2 {
    color: var(--primary-blue);
    margin-top: 32px;
    margin-bottom: 16px;
}

.privacy-container h3 {
    color: var(--primary-red);
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-container p, .privacy-container li {
    color: #333;
    margin-bottom: 12px;
}

.privacy-container ul {
    padding-left: 24px;
}

.effective-date {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-red);
    padding: 16px;
    margin-bottom: 32px;
    font-weight: bold;
}

.contact-info {
    background: #f0f8ff;
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    padding: 20px;
    margin-top: 32px;
}

/* Diabetes Type 3 Styles */
.brain-fact {
    background: linear-gradient(135deg, #fff0f0 0%, #ffe6e6 100%);
    border-left: 5px solid var(--primary-red);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brain-fact h4 {
    color: var(--primary-blue);
    margin-top: 0;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.symptom-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-red);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.prevention-tip {
    background: #e6f3ff;
    border: 1px solid var(--primary-blue);
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 6px;
    border-left: 5px solid #ffc107;
}
/* Compact List Styling - Excludes navigation lists */
ul:not(nav ul), ol:not(nav ol) {
    margin: 0.75rem 0;
    padding-left: 1.2rem;
    line-height: 1.4;
}

ul:not(nav ul) li, ol:not(nav ol) li {
    margin: 0.3rem 0;
    padding: 0.1rem 0;
}

/* Compact symptom/feature lists */
ul.compact {
    margin: 0.5rem 0;
    padding-left: 1rem;
}

ul.compact li {
    margin: 0.2rem 0;
    padding: 0.1rem 0;
    line-height: 1.3;
}

/* Two-column lists for longer lists */
ul.two-columns {
    columns: 2;
    column-gap: 2rem;
    margin: 0.5rem 0;
    padding-left: 1rem;
}

ul.two-columns li {
    margin: 0.2rem 0;
    padding: 0.1rem 0;
    break-inside: avoid;
}

/* Inline lists for simple items */
ul.inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

ul.inline li {
    margin: 0;
    padding: 0.2rem 0.6rem;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Reference links styling */
ul.references {
    margin: 0.5rem 0;
    padding-left: 1rem;
    font-size: 0.9rem;
}

ul.references li {
    margin: 0.15rem 0;
    padding: 0.1rem 0;
}

/* Ordered list styling */
ol {
    counter-reset: item;
}

ol.compact {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

ol.compact li {
    margin: 0.25rem 0;
    padding: 0.1rem 0;
    line-height: 1.3;
}

/* Modern Transformations Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(220,20,60,0.1) 0%, rgba(24,119,243,0.1) 100%);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(220,20,60,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-dots)"/></svg>');
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.gradient-text {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-light);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Hero CTA Button */
.hero-cta-button {
    display: inline-block;
    background: var(--bg-gradient);
    color: white;
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.hero-cta-button::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;
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Gallery Section */
.gallery-section {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 2rem 1rem;
}

.section-badge {
    display: inline-block;
    background: rgba(220,20,60,0.1);
    color: var(--primary-red);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(220,20,60,0.2);
}

.gallery-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.gallery-section .gallery-intro p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Loading Spinner */
.loading-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-dark);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(220,20,60,0.2);
    border-top: 4px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Transformation Cards */
.transformation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.transformation-card:hover .transformation-overlay {
    transform: translateY(0);
}

.transformation-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.transformation-location {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

.condition-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bottom CTA Section */
.bottom-cta-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.9) 100%);
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h3 {
    color: var(--primary-red);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.bottom-cta-button {
    display: inline-block;
    background: var(--bg-gradient);
    color: white;
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.bottom-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Contact Page Styles */
.contact-hero-section {
    background: var(--bg-gradient);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.contact-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="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--bg-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.contact-form-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

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

.radio-group {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
}

.radio-label input[type="radio"] {
    width: auto;
    margin-right: 0.75rem;
    transform: scale(1.2);
}

.radio-button {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.radio-label input:checked + .radio-button {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.submit-button {
    width: 100%;
    background: var(--bg-gradient);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: 1rem;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-red);
}

.contact-info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-method i {
    color: var(--primary-red);
    font-size: 1.1rem;
    width: 20px;
}

.contact-method a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--primary-red);
}

.success-preview-section {
    padding: 4rem 2rem;
    text-align: center;
    background: white;
}

.success-preview-section .container {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.success-preview-section h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: linear-gradient(135deg, rgba(220,20,60,0.1) 0%, rgba(24,119,243,0.1) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.cta-link {
    display: inline-block;
    background: var(--bg-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: white;
    text-decoration: none;
}

/* Mobile responsive for contact page */
@media (max-width: 768px) {
    .contact-hero-section h1 {
        font-size: 2rem;
    }
    
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Enhanced Modal Styles */
.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(0,0,0,0.5);
    transform: scale(1.1);
}

.modal-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.modal-profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.modal-profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.modal-location {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: justify;
}

.story-text::first-letter {
    font-size: 3rem;
    float: left;
    line-height: 1;
    margin: 0.1rem 0.5rem 0 0;
    color: var(--primary-red);
    font-weight: bold;
}

.story-stats {
    background: linear-gradient(135deg, rgba(220,20,60,0.05) 0%, rgba(24,119,243,0.05) 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-red);
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.story-stats::before {
    content: '📊';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.story-stats strong {
    color: var(--primary-red);
    font-weight: 700;
}

.loading-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
    font-style: italic;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--bg-light);
    border-radius: 50%;
    border-top-color: var(--primary-red);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

.modal-cta {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.modal-cta-button {
    display: inline-block;
    background: var(--bg-gradient);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.modal-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Mobile Responsiveness for Transformations */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .modal-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-profile-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-section {
        padding: 0 1rem;
    }
    
    .bottom-cta-section {
        padding: 2rem 1rem;
    }
  .gallery-section {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }
}

