/* =====================================================
   TRANSFORMATION CATALYST — MASTER FINAL (CURSOR FIX)
===================================================== */

* { box-sizing: border-box; }

:root {
  --violet-deep: #2D1B36;
  --violet-rich: #543A63;
  --violet-glow: #9D7BB0;
  --champagne: #E2C799; 
  --lux-purple: #6A4C93;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --text-body: #4A4A58;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }

/* LUXURY FONT RENDERING */
body { 
  margin: 0; font-family: 'Inter', sans-serif; 
  color: var(--text-body); background: #FAF9FC; 
  overflow-x: hidden; position: relative; width: 100%;
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale; 
  text-rendering: optimizeLegibility;
}

::selection { background: var(--lux-purple); color: #fff; }

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--violet-deep); font-weight: 700; margin: 0; }
h4 { font-family: 'Playfair Display', serif; color: var(--champagne); margin: 0 0 15px 0; font-size: 1.2rem; }
.subtitle { color: var(--violet-rich); font-size: 1.1rem; margin-bottom: 20px; font-weight: 500; letter-spacing: 1px; }

/* BACKGROUND */
.silk-background {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
  background: radial-gradient(at 0% 0%, rgba(242, 208, 169, 0.15) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(84, 58, 99, 0.1) 0px, transparent 50%), linear-gradient(180deg, #F5F0F6 0%, #E6DEF0 100%);
}

/* ANIMATIONS & SHIMMER */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatImage { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes goldShine { 0% { background-position: -200%; } 100% { background-position: 200%; } }

.gold-shimmer-border {
  height: 4px; width: 100px; margin: 30px auto 0 auto; border-radius: 2px;
  background: linear-gradient(90deg, var(--champagne) 0%, #fff 50%, var(--champagne) 100%);
  background-size: 200%; animation: goldShine 3s linear infinite; 
  box-shadow: 0 0 15px rgba(226, 199, 153, 0.5);
  transition: width 0.5s ease-in-out;
}

@keyframes flyReflections { 0% { left: -10%; top: 10%; transform: rotate(15deg); } 25% { top: 5%; } 50% { top: 15%; transform: rotate(-5deg); } 75% { top: 5%; } 100% { left: 110%; top: 10%; transform: rotate(10deg); } }
.butterfly-container { position: absolute; top: 10%; left: -100px; width: 50px; height: 50px; z-index: 10; animation: flyReflections 30s linear infinite; pointer-events: none; }
.butterfly-img { width: 100%; height: auto; }

/* NAVBAR */
.navbar {
  position: fixed; top: 20px; left: 5%; right: 5%; height: 80px; 
  background: rgba(45, 27, 54, 0.95); backdrop-filter: blur(20px);
  border: 1px solid rgba(242, 208, 169, 0.5); border-radius: 50px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 30px; z-index: 1000; box-shadow: 0 10px 40px rgba(0,0,0,0.3); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar:hover { box-shadow: 0 0 30px rgba(242, 208, 169, 0.3); border-color: var(--champagne); }
.brand { display: flex; align-items: center; text-decoration: none; color: var(--champagne); gap: 15px; }
.nav-logo { height: 50px; width: auto; object-fit: contain; }
.brand-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; color: #fff; }
.menu ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; transition: all 0.5s ease; }
.menu a { text-decoration: none; font-size: 0.9rem; font-weight: 600; color: #ffffff; transition: color 0.3s; text-shadow: 0 0 2px rgba(0,0,0,0.5); }
.menu a:hover { color: var(--champagne); text-shadow: 0 0 15px rgba(242, 208, 169, 0.8); } 
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--champagne); transition: color 0.3s; }

/* HERO SECTION */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; padding: 100px 20px 40px 20px; background-color: #2D1B36; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transform: scale(1.15); transform-origin: center; filter: brightness(0.65); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(45, 27, 54, 0.4) 0%, rgba(45, 27, 54, 0.9) 100%); z-index: 1; }
.hero-content { width: 100%; max-width: 1400px; margin: 0 auto; z-index: 2; position: relative; display: flex; flex-direction: column; align-items: center; }
.firefly { position: absolute; width: 4px; height: 4px; background-color: var(--champagne); border-radius: 50%; box-shadow: 0 0 15px var(--champagne); animation: fly 15s infinite linear; opacity: 0; z-index: 1; }
@keyframes fly { 0% { transform: translate(0, 0); opacity: 0; } 50% { transform: translate(50px, -50px); opacity: 0.8; } 100% { transform: translate(100px, 0); opacity: 0; } }

/* HERO TEXT */
.magic-text {
  font-family: 'Playfair Display', serif; 
  font-size: clamp(2rem, 5vw, 5rem); 
  line-height: 1.2; 
  margin: 0 auto 30px auto; 
  width: 100%; max-width: 1200px;
  letter-spacing: 1px; text-transform: capitalize;
  background: linear-gradient(to right, #ffffff 0%, #F2D0A9 20%, #ffffff 40%, #ffffff 100%);
  background-size: 200% auto; color: #fff;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: goldShine 6s linear infinite;
  filter: drop-shadow(0 5px 20px rgba(0,0,0,0.6));
}
.hero-quote { font-size: 1.4rem; font-weight: 500; font-style: italic; max-width: 900px; margin: 0 auto 40px auto; line-height: 1.6; color: rgba(255, 255, 255, 0.95); text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

/* PEARL BUTTON */
.btn-primary { 
  display: inline-block; background: linear-gradient(135deg, #E2C799 0%, #FFFFFF 50%, #E2C799 100%);
  background-size: 200% auto; color: var(--violet-deep); padding: 22px 85px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; letter-spacing: 2px; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
  box-shadow: 0 10px 40px rgba(0,0,0,0.4); border: 2px solid transparent; margin-top: 0; 
  animation: liquidFlow 6s linear infinite;
}
.btn-primary:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 0 35px rgba(226, 199, 153, 0.7); background: #fff; border-color: var(--champagne); }
.pulse-btn { animation: softPulse 3s infinite; }
@keyframes softPulse { 0% { box-shadow: 0 0 0 0 rgba(242, 208, 169, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(242, 208, 169, 0); } 100% { box-shadow: 0 0 0 0 rgba(242, 208, 169, 0); } }
@keyframes liquidFlow { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.btn-text { background: none; border: none; color: var(--violet-rich); font-weight: 600; font-size: 1.1rem; cursor: pointer; margin-top: 20px; border-bottom: 2px solid var(--champagne); transition: all 0.3s; text-decoration: none; display: inline-block; }

/* SECTIONS & ORBS */
.section { padding: 120px 20px; position: relative; z-index: 2; }
.relative-z { position: relative; z-index: 5; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.dark-title { color: var(--violet-deep); font-size: 3rem; margin-bottom: 10px; }
.gold-heading { color: var(--champagne) !important; font-size: 3rem; margin-bottom: 10px; text-shadow: 0 0 20px rgba(242, 208, 169, 0.2); }
.light-text { color: rgba(255,255,255,0.7) !important; font-size: 1.2rem; }
.shimmer-text { animation: goldShine 4s linear infinite; }
.ambient-light-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; pointer-events: none; }
.light-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.4; animation: floatyGlow 15s ease-in-out infinite alternate; }
.orb-dark .orb-2 { width: 300px; height: 300px; background: var(--violet-glow); bottom: -50px; right: -50px; animation-delay: -5s; }
.orb-dark .orb-3 { width: 500px; height: 500px; background: var(--lux-purple); top: 30%; left: 60%; animation-delay: -8s; opacity: 0.3; }
.orb-light .light-orb { background: rgba(242, 208, 169, 0.3); opacity: 0.3; } 
@keyframes floatyGlow { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; } 50% { transform: translate(-30px, -50px) scale(1.1); opacity: 0.6; } }

/* ABOUT SECTION */
.about-hero-header { text-align: center; max-width: 1000px; margin: 0 auto 60px auto; }
.glowing-name-dark { font-size: 4.5rem; margin-bottom: 10px; color: var(--violet-deep); text-shadow: 0 0 30px rgba(84, 58, 99, 0.15); line-height: 1.1; }
.credentials-ribbon { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--violet-rich); margin-top: 15px; font-weight: 600; letter-spacing: 0.5px; }
.credentials-ribbon .dot { color: var(--champagne); font-weight: bold; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.about-image-wrapper { position: relative; display: flex; justify-content: center; width: 100%; }
.purple-backdrop { position: absolute; top: 15px; left: 15px; width: 100%; height: 100%; background: var(--violet-deep); border-radius: 20px; z-index: 0; opacity: 0.95; }
.about-photo { position: relative; z-index: 2; width: 100%; max-width: 650px; height: auto; object-fit: contain; border-radius: 20px; box-shadow: 0 20px 50px rgba(84, 58, 99, 0.15); transition: transform 0.3s ease; animation: floatImage 4s ease-in-out infinite; border: 2px solid var(--champagne); padding: 10px; background: #fff; }
.seamless-flow { padding-top: 10px; }
.grand-quote { font-family: 'Playfair Display', serif; font-size: 2rem; font-style: italic; color: var(--violet-deep); line-height: 1.4; margin: 0 0 25px 0; }
.bio-text { color: var(--text-body); font-size: 1.15rem; line-height: 1.8; margin-bottom: 25px; }
.signature-text { color: var(--lux-purple) !important; font-weight: 600; font-style: italic; font-size: 1.2rem; margin-top: 30px; }

/* SERVICES */
.dark-jewel-section { background: #2D1B36; position: relative; overflow: hidden; margin-top: -2px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 50px; }
.glass-card { background: rgba(84, 58, 99, 0.25); backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.1); border-top: 1px solid rgba(255, 255, 255, 0.3); padding: 60px 40px; border-radius: 20px; text-align: center; transition: all 0.4s ease; box-shadow: 0 15px 40px rgba(0,0,0,0.4); min-height: 580px; display: flex; flex-direction: column; }
.card-inner-content { flex-grow: 1; display: flex; flex-direction: column; justify-content: flex-start; }
.glass-card:hover { transform: translateY(-15px) scale(1.02); background: rgba(84, 58, 99, 0.4); border-color: var(--champagne); box-shadow: 0 0 50px rgba(157, 123, 176, 0.3); }
.glass-card:hover .bottom-splash { width: 140px !important; opacity: 1; box-shadow: 0 0 20px var(--champagne); }
/* Keep the Title White */
.glass-card h3 { 
  color: #ffffff; 
  margin-bottom: 15px; 
  font-size: 1.8rem; 
}

/* 1. The Main Paragraph Text -> WHITE */
.glass-card p { 
  color: rgba(255, 255, 255, 0.9) !important; /* Bright White */
  line-height: 1.7; 
  font-size: 1rem; 
  font-weight: 400; /* Normal weight */
  text-shadow: none; /* Remove the heavy shadow */
}
.icon-box { font-size: 3.5rem; color: var(--champagne); margin-bottom: 25px; text-shadow: 0 0 20px rgba(242, 208, 169, 0.4); transition: transform 0.3s; }
.glowing-icon { animation: iconPulse 3s infinite ease-in-out; }
/* Make the Subtitles (Bold Text) GOLD */
.glass-card strong {
  color: var(--champagne) !important;
  font-size: 1.15rem;       /* Slightly larger than normal text */
  text-transform: uppercase; /* Makes it look like a proper header */
  letter-spacing: 1px;       /* Adds luxury spacing */
  display: inline-block;     /* Keeps it neat */
  margin-bottom: 5px;        /* Adds space before the paragraph starts */
  text-shadow: 0 1px 2px rgba(0,0,0,0.5); /* Makes the gold pop */
}
@keyframes iconPulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }

/* TESTIMONIALS */
.golden-royal-bg { background: linear-gradient(135deg, #F9F9F9 0%, #E8EBF2 100%); position: relative; overflow: hidden; }
.pearl-card { background: #ffffff; border: 1px solid rgba(242, 208, 169, 0.5); border-top: 4px solid var(--champagne); padding: 60px 50px; border-radius: 20px; box-shadow: 0 20px 50px rgba(45, 27, 54, 0.08); transition: all 0.4s ease; text-align: center; }
.pearl-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(45, 27, 54, 0.12); border-color: var(--violet-rich); }
.pearl-card p { font-style: italic; font-size: 1.3rem; color: var(--text-body); line-height: 1.8; margin-bottom: 30px; }
.quote-icon-gold { font-size: 2.5rem; color: var(--champagne); margin-bottom: 25px; }
.client-signature .name { color: var(--violet-deep); font-weight: 700; display: block; font-size: 1.1rem; }
.client-signature .role { color: var(--violet-rich); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

.slider-container { position: relative; max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 30px; }
.slider-track-wrapper { overflow: hidden; width: 100%; padding: 20px 0; }
.slider-track { display: flex; transition: transform 0.5s ease-in-out; }
.slide { min-width: 100%; box-sizing: border-box; padding: 0 15px; }
.slider-btn { background: #fff; color: var(--violet-deep); border: 1px solid var(--champagne); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.3s ease; flex-shrink: 0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.slider-btn:hover { background: var(--champagne); color: var(--violet-deep); transform: scale(1.1); box-shadow: 0 0 20px rgba(242, 208, 169, 0.6); }

/* REFLECTIONS & CONTACT */
.platinum-mist-bg { background: linear-gradient(180deg, #F5F0F6 0%, #E6DEF0 100%); position: relative; overflow: hidden; }
.reflection-header-wrapper { position: relative; text-align: center; max-width: 800px; margin: 0 auto 60px auto; }
.butterfly-perch { position: absolute; top: -35px; right: 10%; width: 50px; height: 50px; animation: hoverFloat 3s ease-in-out infinite alternate; z-index: 10; }
.butterfly-gif { width: 100%; height: auto; display: block; transform: rotate(15deg); }
@keyframes hoverFloat { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }

.ideas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.diamond-card { background: #fff; padding: 50px 40px; border-radius: 20px; box-shadow: 0 15px 30px rgba(45, 27, 54, 0.05); transition: all 0.4s ease; border-top: 1px solid rgba(255,255,255,0.8); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.diamond-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--champagne), #fff, var(--champagne)); opacity: 0; transition: opacity 0.4s; }
.diamond-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(45, 27, 54, 0.1); }
.diamond-card:hover::before { opacity: 1; }
.diamond-card .date { font-size: 0.85rem; color: var(--violet-rich); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 15px; display: block; font-weight: 700; }
.diamond-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: var(--violet-deep); font-family: 'Playfair Display', serif; }
.read-link { text-decoration: none; font-weight: 700; color: var(--violet-rich); font-size: 0.95rem; transition: margin 0.3s; margin-top: 20px; display: inline-block;}
.diamond-card:hover .read-link { margin-left: 10px; color: var(--violet-deep); }

/* CONTACT */
.contact-header-special { max-width: 900px; margin-bottom: 60px; }
.contact-header-special h2 { font-size: 3.5rem; margin-bottom: 25px; line-height: 1.1; color: var(--violet-deep); }
.contact-form { max-width: 700px; margin: 0 auto; padding: 60px; }

/* FIX FOR CURSOR VISIBILITY */
.contact-form input:not([type="checkbox"]), .contact-form textarea { 
  width: 100%; padding: 20px; margin-bottom: 25px; 
  background: rgba(255,255,255,0.8); border: 1px solid #ccc; border-radius: 8px; 
  font-family: inherit; font-size: 1rem; transition: all 0.3s; 
  color: #2D1B36; /* DARK TEXT */
  caret-color: #2D1B36; /* DARK BLINKING CURSOR */
}

.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--violet-deep); background: white; box-shadow: 0 0 25px rgba(157, 123, 176, 0.3); transform: scale(1.01); }
.form-checkbox { display: grid; grid-template-columns: 24px 1fr; gap: 15px; align-items: start; margin-bottom: 30px; font-size: 0.9rem; color: var(--text-body); cursor: pointer; width: 100%; }
.form-checkbox input { appearance: none; -webkit-appearance: none; width: 24px; height: 24px; border: 2px solid var(--champagne); border-radius: 6px; margin: 0; cursor: pointer; position: relative; display: flex; align-items: center; justify-content: center; }
.form-checkbox input:checked { background-color: var(--champagne); }
.form-checkbox input:checked::after { content: '✔'; color: var(--violet-deep); font-size: 16px; font-weight: 800; }

footer { text-align: center; padding: 80px 20px; background: var(--violet-deep); color: rgba(255,255,255,0.8); font-size: 0.9rem; position: relative; overflow: hidden; margin-top: 50px; }
.footer-content { max-width: 1000px; margin: 0 auto 40px auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; position: relative; z-index: 2; }
.footer-col h3 { color: var(--champagne); font-size: 1.4rem; margin-bottom: 15px; }
.social-links { display: flex; gap: 20px; margin-bottom: 15px; }
.social-links a { color: var(--champagne); font-size: 1.5rem; transition: all 0.3s ease; }
.social-links a:hover { color: #fff; text-shadow: 0 0 15px var(--champagne), 0 0 30px var(--violet-glow); transform: translateY(-5px) scale(1.2); }
.disclaimer { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; font-size: 0.75rem; color: rgba(255,255,255,0.4); max-width: 900px; margin: 0 auto; line-height: 1.6; text-align: center; position: relative; z-index: 2; }
.legal-text { color: rgba(255, 255, 255, 0.6); margin-bottom: 20px; font-size: 0.8rem; line-height: 1.5; }
.legal-text strong { color: var(--champagne); }
.footer-legal { margin-bottom: 10px; font-size: 0.85rem; }
.footer-legal a { color: var(--champagne); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: #fff; }
.footer-legal .sep { color: rgba(255,255,255,0.3); margin: 0 8px; }
.copyright { margin-top: 20px; color: var(--champagne); }

/* MODAL FIX */
.modal { display: none; position: fixed; z-index: 99999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(45, 27, 54, 0.85); backdrop-filter: blur(8px); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.modal.active { display: flex; opacity: 1; }
.modal-content { background: white; width: 90%; max-width: 950px; border-radius: 20px; padding: 0; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid var(--champagne); height: 85vh; overflow: hidden; display: flex; flex-direction: column; }
.modal.active .modal-content { transform: scale(1); }
.close-btn { position: absolute; top: 15px; right: 25px; color: var(--violet-deep); font-size: 40px; font-weight: bold; cursor: pointer; z-index: 10; line-height: 1; background: rgba(255,255,255,0.8); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.close-btn:hover { background: var(--violet-deep); color: var(--champagne); }
.modal-grid { display: grid; grid-template-columns: 2fr 3fr; height: 100%; }
.modal-img-col { background: #f4eff6; display: flex; align-items: center; justify-content: center; height: 100%; }
.modal-img-col img { width: 100%; height: 100%; object-fit: cover !important; object-position: top center; }
.modal-text-col { padding: 50px; display: flex; flex-direction: column; overflow: hidden; color: var(--violet-deep); height: 100%; }
.modal-text-col h3 { margin-top: 0; font-size: 2.2rem; color: var(--violet-deep); margin-bottom: 20px; border-bottom: 2px solid var(--champagne); padding-bottom: 15px; flex-shrink: 0; }
.scrollable-bio { overflow-y: auto; padding-right: 20px; flex-grow: 1; scrollbar-width: thin; scrollbar-color: var(--champagne) #f1f1f1; }
.scrollable-bio::-webkit-scrollbar { width: 8px; }
.scrollable-bio::-webkit-scrollbar-track { background: #f1f1f1; }
.scrollable-bio::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 4px; }
.scrollable-bio::-webkit-scrollbar-thumb:hover { background: var(--violet-rich); }
.modal-text-col p { font-size: 1.05rem; margin-bottom: 20px; line-height: 1.7; color: var(--violet-deep); }
.signature { font-weight: 700; color: var(--violet-rich); margin-top: 20px; font-style: italic; text-align: right; }

/* TABLET/IPAD SPECIFIC FIX (SQUEEZE LINKS, NO HAMBURGER) */
@media (max-width: 1200px) and (min-width: 769px) {
  .navbar { padding: 0 15px; } /* Reduce side padding */
  .menu ul { gap: 15px; } /* Squeeze links closer together */
  .menu a { font-size: 0.8rem; } /* Make link text slightly smaller */
  .brand-text { font-size: 0.95rem; } /* Slightly smaller brand text */
  /* Fix Modal on iPad: Stack image on top, text below */
  .modal-content { height: auto; max-height: 90vh; overflow-y: auto; display: block; }
  .modal-grid { grid-template-columns: 1fr; height: auto; display: block; }
  .modal-img-col { height: auto; max-height: 550px; width: 100%; padding: 0; display: block; }
  .modal-img-col img { width: 100%; height: 100%; max-height: 550px; object-fit: cover !important; object-position: top center; border-radius: 20px 20px 0 0; }
  .modal-text-col { height: auto; overflow: visible; padding: 30px; }
}

/* MOBILE PHONES (HAMBURGER ON + IMAGE FIX) */
@media (max-width: 900px) {
  .section { padding: 80px 20px; }
  
  /* --- FIX FOR THE TINY IMAGE --- */
  .about-layout { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .about-image-wrapper { 
    margin: 0 auto 40px auto; 
    max-width: 90%; /* Let it be wider */
    width: 100%; 
    display: block; /* Remove flex to stop squashing */
  }
  .about-photo { 
    width: 100% !important; /* Force photo to fill container */
    max-width: 450px; 
    height: auto; 
    display: block; margin: 0 auto;
  }
  .purple-backdrop { width: 90%; left: 5%; }
  /* ------------------------------ */

  .about-text { text-align: center; }
  .credentials-ribbon { flex-direction: column; gap: 8px; }
  .credentials-ribbon .dot { display: none; }
  
  /* Fix Modal on Mobile */
  .modal-content { height: auto; max-height: 90vh; overflow-y: auto; display: block; }
  .modal-grid { grid-template-columns: 1fr; height: auto; display: block; }
  .modal-img-col { height: 300px; width: 100%; padding: 0; }
  .modal-img-col img { width: 100%; height: 100%; object-fit: cover !important; object-position: top center; border-radius: 20px 20px 0 0; }
  .modal-text-col { height: auto; overflow: visible; padding: 25px; }
  .scrollable-bio { overflow: visible; height: auto; padding-right: 0; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .social-links { justify-content: center; }
}

@media (max-width: 768px) {
  .navbar { top: 0; left: 0; right: 0; border-radius: 0; height: 70px; padding: 0 20px; background: rgba(45, 27, 54, 0.98); border: none; }
  .brand { color: var(--champagne); }
  .nav-logo { height: 40px; }
  .brand-text { font-size: 0.9rem; }
  .menu ul { 
    display: flex; position: absolute; top: 70px; left: 0; right: 0; 
    flex-direction: column; background: #2D1B36; padding: 0; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.5); gap: 0; text-align: center; 
    border-bottom: 2px solid var(--champagne); 
    max-height: 0; overflow: hidden; opacity: 0; 
    transition: all 0.5s ease-in-out;
  }
  .menu ul.active { max-height: 500px; opacity: 1; padding: 40px; gap: 25px; }
  .hamburger { display: block; color: var(--champagne); font-size: 1.5rem; background: none; border: none; cursor: pointer; }
  /* Make menu links big on mobile */
  .menu a { font-size: 1.1rem; } 

  .cards { gap: 30px; }
  .glass-card, .glowing-light-card, .idea-card, .glass-panel-light, .contact-form, .pearl-card { padding: 30px 20px !important; min-height: auto !important; }
  .pearl-card p { font-size: 1rem !important; line-height: 1.5; }
  .quote-icon-gold { font-size: 1.5rem !important; margin-bottom: 15px; }
  .contact-form input, .contact-form textarea { width: 100% !important; margin-bottom: 15px !important; }
  .magic-text { font-size: 2.2rem; margin-bottom: 15px; word-wrap: break-word; }
  .hero-quote { font-size: 1rem; line-height: 1.5; }
  .about-hero-header h2 { font-size: 2.2rem; }
  .contact-header-special h2 { font-size: 2.2rem !important; word-wrap: break-word; }
  .slider-btn { width: 35px; height: 35px; font-size: 0.9rem; }
}